问题:
使用vscode 用git 拉取代码,提示:在签出前,请清理存储库工作树
解决方法:
1. 手动解决:
①git stash 先将本地修改存储起来
②git pull 拉取远程
③git stash pop 还原暂存内容
2. 放弃本地修改,直接覆盖
①git reset --hard
②git pull
本人采用了第一种解决方法。
标签:pull,签出,git,vscode,存储,拉取
来源: https://www.cnblogs.com/meiyanstar/p/14262185.html