Git冲突:commit your changes or stash them before you can merge.
用git pull来更新代码遇到了问题:error: Your local changes to the following files would be overwritten by merge:xxx/xxx/xxxPlease, commit your changes or stash them before you can merge.Aborting解决办法:1.stas...
·
用git pull来更新代码遇到了问题:
error: Your local changes to the following files would be overwritten by merge:
xxx/xxx/xxx
Please, commit your changes or stash them before you can merge.
Aborting
解决办法:
1.stash
git stash
git pull
git stash pop
可以diff一下此文件看看自动合并的情况,并作出相应修改。
对应的指令及其作用是:
git stash: 备份当前的工作区的内容,从最近的一次提交中读取相关内容,让工作区保证和上次提交的内容一致。同时,将当前的工作区内容保存到Git栈中。
git stash pop: 从Git栈中读取最近一次保存的内容,恢复工作区的相关内容。由于可能存在多个Stash的内容,所以用栈来管理,pop会从最近的一个stash中读取内容并恢复。
git stash list: 显示Git栈内的所有备份,可以利用这个列表来决定从那个地方恢复。
git stash clear: 清空Git栈。此时使用gitg等图形化工具会发现,原来stash的哪些节点都消失了。
2.直接覆盖,放弃原来修改。
git reset --hard
git pull
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献2条内容
所有评论(0)