stash
git stash
:备份当前的工作区,从最近一次提交中读取相关内容,让工作区保持和上一次提交的内容一致。同时,将工作区的内容保存到git栈中。
git stash pop
:从git栈中读取最近一次保存的内容,恢复工作区的相关内容。由于可能存在多个stash的内容,所以用栈来管理,pop会从最近一个stash中读取内容并恢复到工作区。
git stash list
:显示git栈内的所有备份,可以利用这个列表来决定从那个地方恢复。
git stash clear
:清空git栈。
error: please commit or stash them.
git stash
git pull
git stash pop
网友评论