VSCode 用git 拉取代码,提示:在签出前,请清理存储库工作树。
解决方法:
1. 手动解决:
git stash 先将本地修改存储起来
git pull 拉取远程
git stash pop 还原暂存内容
2. 放弃本地修改,直接覆盖
git reset --hard
git pull
VSCode 用git 拉取代码,提示:在签出前,请清理存储库工作树。
解决方法:
1. 手动解决:
git stash 先将本地修改存储起来
git pull 拉取远程
git stash pop 还原暂存内容
2. 放弃本地修改,直接覆盖
git reset --hard
git pull