git pull error
git pull 报错
本地git拉取时 报错:
error: Your local changes to the following files would be overwritten by merge: |
提示可以看到:您不能与本地修改合并。Git 保护您免于丢失潜在的重要更改
有三种解决方案:
使用提交更改
git commit -m "My message"
进行合并,然后拉到本地
git stash pop
丢弃本地更改
git reset --hard
或者
git checkout -t -f remote/branch然后拉取到本地
git pull
放弃本地的文件更改
git checkout filename
参考链接
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
Comment