git提交遇到nothing to commit, working directory clean

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

  1. 本地获取远程的变更(只是获取,尚未合并):git remote update 或者 git fetch origin
  2. 接着,git status -uno:可以让你看到当前分支是否领先/落后/分叉于它跟踪的远程分支
  3. 或者,git show-branch *master:可以让你看到所有名字最后是 master 的分支的 commits,因此你可以看到 origin/master 和 master 在 commits 层面上的差异
  4. 最后,git diff origin/master:可以让你看到 origin/master 和 master 在代码(文件)层面上的差异

转载于:https://my.oschina.net/u/2263802/blog/993955

你可能感兴趣的:(git提交遇到nothing to commit, working directory clean)