常见错误
0、Git的奇技淫巧
1、Please commit your changes or stash them before you merge.
Updating d419eb2..3525a9c
error: Your local changes to the following files would be overwritten by merge:
docs/xxx.md
Please commit your changes or stash them before you merge.
1
2
3
4
2
3
4
解决方案:按照提示来,使用git stash 指令
git stash
git pull
git stash pop
1
2
3
2
3
- git stash:来备份当前工作区内容, 从最近的一次提交中读取相关内容,让工作区保证与上次提交的内容一致,同 时将当前的工作区内容保存到 Git 栈上
- git stash pop: 从 Git 栈中读取最近一次保存的内容,恢复工作区的相关内容
参考资料
- https://wkevin.github.io/GitChat/gitchat.html
上次更新: 2021/09/12, 20:42:58
- 02
- README 美化05-20
- 03
- 常见 Tricks 代码片段05-12