git 如何不暂存切换分支
时间: 2024-06-13 17:07:56 浏览: 119
git stash暂存的操作方法
当你在当前分支做了一定的修改,但是需要切换到其他分支时,可以使用以下命令来不暂存切换分支:
```
git stash save --keep-index
git stash drop
git checkout <branch>
```
其中,`git stash save --keep-index`命令将当前分支的修改暂存,但是不包括新添加的文件和未被 Git 管理的文件。`git stash drop`命令则是删除之前暂存的修改。最后,使用`git checkout <branch>`命令切换到其他分支即可。
阅读全文