解决 git 同步时 Everything up-to-date

git branch newbranch
git checkout newbranch
git add .
git commit -a
git checkout master
git merge newbranch
git push -u origin master
git branch -D newbranch
原文地址:https://www.cnblogs.com/zhiming99/p/12618042.html