作者:空谷幽兰关小羽 | 来源:互联网 | 2023-09-07 16:21
本文由编程笔记#小编为大家整理,主要介绍了Git分支相关的知识,希望对你有一定的参考价值。
Git鼓励大量使用分支:
查看分支: git branch
创建分支: git branch
切换分支: git checkout
创建+切换分支: git checkout -b
合并某分支到当前分支: git merge
删除分支: git branch -d
如果要丢弃一个没有被合并过的分支,可以通过 git branch -D 强行删除。
Git还提供了一个stash
功能,可以把当前工作现场“储藏”起来,等以后恢复现场后继续工作:
$ git stash
Saved working directory and index state WIP on dev: f52c633 add merge
现在,用 git status 查看工作区,就是干净的(除非有没有被Git管理的文件),因此可以放心地创建分支来修复bug。
用 git stash list 命令可以查看stash内容
需要恢复一下,有两个办法:
一是用 git stash apply 恢复,但是恢复后,stash内容并不删除,你需要用git stash drop
来删除;
另一种方式是用 git stash pop ,恢复的同时把stash内容也删了: