##当前分支落后于远端分支
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.
当执行git push
将本地代码向远端推送的时候出现了上面的提示。这个提示的大意是本地代码落后于远端的代码。
导致出现这个提示的原因可能是:
- 有其他同事在你提交代码之前提交了代码;
- 你可能在自己的本地分支进行了回退操作,导致自己的分支落后于远端。
原理:在你执行push操作时必须确保你的本地分支比你要推送的远端库更新。如下图中显示,origin必须处于分叉点,不然不能将local分支直接向远端分支推送。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。