Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to resume Git-Flow after a break cause by a merge conflict on a finish command?

Tags:

git

git-flow

Do i really need to complete all the step by hand every time I "Finish" a branch and there is a conflict merging it with Git-Flow? Or there's a way to resume after all the conflict are solved?

like image 908
JudgeProphet Avatar asked Feb 07 '13 15:02

JudgeProphet


People also ask

What happens if you get a conflict during a merge?

A merge conflict is an event that occurs when Git is unable to automatically resolve differences in code between two commits. When all the changes in the code occur on different lines or in different files, Git will successfully merge commits without your help.


1 Answers

After resolving the conflict, you simply call

git flow release finish [RELEASE_NAME] 

again. git is 'smart' in that if you try to do merge from branch A to branch B more than once, the second and subsequent times are ignored with "Already up-to-date" as long as the source of the merge has not changed.

like image 117
Jonno Avatar answered Oct 08 '22 09:10

Jonno