error: Your local changes to the following files would be overwritten by checkout: b Please, commit your changes or stash them before you can switch branches. Aborting组织你切换分支。
这时就可以用到git stash命令。git stash可以保存当前的工作进度,并reset工作区,这样在不丢失当前工作进度的前提下,你可以切换分支继续工作。
该命令的基本使用方法如下:
保存当前工作进度:
git stath save [message]
查看已经保存的工作进度列表:
git stash list
恢复指定的工作进度:
git stash apply [--index] [stash]
恢复指定的工作进度,并将其从进度列表中删除:
git stash pop [--index] [stash]
删除一个存储的进度:
git stash drop [stash]
删除所有存储的进度:
git stash clear
没有评论:
发表评论