开发者

Should I separate client and server side of my project into two Git repositories, or keep them in one?

开发者 https://www.devze.com 2023-03-23 06:19 出处:网络
So I have two different project in the same repository one for the client side and the other for the server side (they don\'t share any code).

So I have two different project in the same repository one for the client side and the other for the server side (they don't share any code).

When I branch from master and make changes on the client side project and then I wa开发者_开发知识库nt to merge back to master (after a month or so), I face a merge conflict with the server side code (other team member working on the server side).

Is it better to have two different repositories, where one holds the server and the other holds the client side code? Or should I keep it the way it is now?


If you intend to deploy new versions of the client and server software at the same time, then it makes sense to have them in the same repository. You said that the client side and the server side code don't share any code, so there shouldn't be any conflicts when merging. But you also said that you were having conflicts, so it sounds like developers on both branches are making changes to the server-side code. The best solutions would be a) tell the client-side developers not to change the server-side code, b) merge more often, and c) communicate between the teams when changes are being made that might be hard to merge.

If you are getting conflicts now, then splitting it into two repositories wouldn't help you any... presumably your branch would still be making changes to the server code, but now you'd just have two repositories to merge instead of one. I would expect you to get the same conflicts if you tried to use this method instead of what you're doing now, and there'd be more administrative overhead to maintain the two repositories.


First thing to fix: why there is a merge conflict from your client side code with your master side code. It is supposed that both are working on the different files.

Second, instead of using one git repository on two projects. I recommend you to separate two projects in to two git repository and use repo to manage the both repository at the same time.

Repo is a repository management tool that we built on top of Git. Repo unifies the many Git repositories when necessary, does the uploads to our revision control system, and automates parts of the Android development workflow. Repo is not meant to replace Git, only to make it easier to work with Git in the context of Android. The repo command is an executable Python script that you can put anywhere in your path. In working with the Android source files, you will use Repo for across-network operations. For example, with a single Repo command you can download files from multiple repositories into your local working directory.

quote from Android open source development

More ref on repo can be found.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号