As the title says, push always prompts me with this error, but I can be sure that I have merged the latest code, and even if I re-clone the latest code, I will still be prompted to lag behind the remote when I push at the end. Branch
怪我咯2017-05-02 09:47:27
Back up a branch first git checkout -b master_bak
Delete git branch -D master
Re-pull git fetch origin master:master
git checkout master
git merge master_bak
git push origin master