Mohammad K.

u/mokazemi@discuss.tchncs.de
6 posts · 21 comments

Recent posts

Recent comments

I guess you should rebase or merge the Master branch into your branch and then push again:

git checkout master
git pull origin master
git checkout yourbranch
git rebase master
git push -f origin yourbranch 

But if you got error since that new commit has conflict with your chances:

git merge master
git push origin yourbranch