With SVN, I have the following setting:
/tags/
/trunk/
/branches/
/branches/my_feature
/branches/my_other_feature
I want all branches to synchronize with the trunk, so I periodically run svn merge for the branch for the trunk.
However, I also want all branches to synchronize with each other to avoid conflicts, since any given lifetime of a branch can be a couple of months or more. If I have a dozen branches, I will have a nasty mesh with SVN, and that would be impractical.
My question is to use Git instead of SVN help with branch and trunk synchronization?
source
share