当前位置: 代码迷 >> 综合 >> git pull拉取代码时提示‘Please commit your changes or stash them before you merge’’
  详细解决方案

git pull拉取代码时提示‘Please commit your changes or stash them before you merge’’

热度:34   发布时间:2024-02-10 20:40:22.0

解决方法:

  1. git stash 让工作区内容保证与上一次提交内容相同,同时备份当前修改的内容
  2. git pull 拉取仓库的最新内容
  3. git stash pop 在仓库最新内容的基础上添加当前修改的内容

 

  相关解决方案