How to push after merge back to master?
I wanted to merge a branch into master and followed the steps gitlab told me to do. git fetch origin git checkout -b "testbranch" "origin/testbranch" git fetch origin git checkout "origin/master" git merge –no-ff "testbranch" Here I fixed all the conflicts git commit -m "merged" git push origin "master" The problem is that when trying… Read More How to push after merge back to master?