Question
I combined the branch into a master that was not updated at the last moment.
What am I doing
I merged the branch in master
git merged BRANCHNAME
Conflicts
Automatic merge failed; fix conflicts and then commit the result.
git commit -a -m "Resolved conflicts while merging email-fix branch"
Then I tried to push everything into the original master, but it says:
! [rejected] master -> master (non-fast-forward)
How can I solve this problem?
source
share