3
I am working on a project that has 3 branches. After some time the team saw the need to change the error treatment, which is common among the 3 branches. Is there any way to change the master and replicate that change for the branches?
3
I am working on a project that has 3 branches. After some time the team saw the need to change the error treatment, which is common among the 3 branches. Is there any way to change the master and replicate that change for the branches?
3
There is. Use the Merge production command for branches. This article helps you organize your branches. http://nvie.com/posts/a-successful-git-branching-model/
2
I got!
Just merge the master into the branch, and there is the option to send only the changes. : D
Browser other questions tagged team-foundation-server branch
You are not signed in. Login or sign up in order to post.
A great reference to git-flow, use at work (team with ~10 people) and also apply in part to my personal/exploratory/experimental projects
– Jefferson Quesado