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?
feedback
|
|
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.
| |||||
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. | |||
|
feedback
|