标签:不同 code 步骤 网络 更改 pop pull 缓存 stash
我的步骤通常是这样git push
如果失败的话,说明网络上的版本已经更改过了,那就git pull
如果失败的话,说明网络的版本和本地的版本在合并时可能产生冲突,那就git stash
(把本地的修改全部缓存起来)
然后再git pull
然后再git stash pop
(把缓存起来的修改恢复)
然后如果有冲突解决冲突,没有就git push
标签:不同 code 步骤 网络 更改 pop pull 缓存 stash
原文地址:http://www.cnblogs.com/chen-yonghai/p/6202295.html