2016-02-05 4:42 GMT-08:00 Liam White <inkscapebrony@...400...>:
There is one feature of bzr that git doesn't have that would maybe be a deal-breaker for some, and that is the ability to maintain separate branches in separate directories: for example, to make custom builds for each branch without needing to reconfigure and fully recompile each time.
Git can put the work tree in a different directory if you want, but it needs extra parameters. http://stackoverflow.com/questions/6073507/git-checkout-branch-from-outside
Also, I know it's possible to make a .git file with the following content: gitdir: /home/jrandomhacker/src/project/.git
This will make a directory that will work like a normal Git repository in every respect, except the local repository will in fact be stored elsewhere. This feature is used by submodules.
Best regards, Krzysztof