I feel using Git submodules is some how troublesome for my development workflow. I also learn that Git subtree and gitslave might be the solution after that. Which one is the best option to go? I can't find any comparison information about these 2 options. Does these 2 has windows version to work with?

link|improve this question

52% accept rate
Are you talking about the Git subtree merge strategy or Avery Pennarun's git-subtree? The two are fundamentally not the same. – kynan Apr 13 at 23:31
feedback

2 Answers

up vote 15 down vote accepted

Which is best for you depends on your needs, desires, and workflow. They are in some senses semi-isomorphic, it is just some are a lot easier to use than others for specific tasks.

  • gitslave is useful when you control and develop on the subprojects at more of less the same time as the superproject, and furthermore when you typically want to tag, branch, push, pull, etc all repositories at the same time. gitslave has never been tested on windows that I know of. It requires perl.

  • git-submodule is better when you do not control the subprojects or more specifically wish to fix the subproject at a specific revision even as the subproject changes. git-submodule is a standard part of git and thus would work on windows.

  • git-subtree is better when you prefer to have a single-repository "unified" git history and only need to pull changes in from external sources--not contribute your own changes back. git-subtree merge is a standard git technique and thsu would work on windows.

  • repo is in theory similar to gitslave, but not as well documented for non-android operations that I have found.

  • kitenet's mr is what you would want to use if you have multiple version control systems in use, but is limiting for git-only superprojects due to its lowest common denominator approach

link|improve this answer
1  
Note that git-subtree in this answer refers to (as mentioned) to the Git subtree merge strategy and not Avery Pennarun's git-subtree, which are fundamentally not the same. The latter was explicitly designed to allow contributing changes back from the subtree. – kynan Apr 13 at 23:33
feedback

I currently use submodules for development and not just relating 3rd party libraries. There are some ways that you can make life easier with submodules, especially when they are the source of merge or rebase conflicts. Look to ls-tree to get the 2 commits involved on a conflict in the submodule. This is probably the most difficult part of submodules for people to deal with. For now scripting will make this much easier to work with. Future versions of Git should have better native support for dealing with them.

Hope this helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.