一开始git push推送不上去,做了这些处理后还是不行。现在遇到了这个情况应该怎么办?
你本地有尚未提交的更改,所以不能push ,你可以有两种方式:
git stash save "暂时保存"
git add .
git commit -m "..."