Git分支
Posted scalecx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git分支相关的知识,希望对你有一定的参考价值。
Git鼓励大量使用分支:
查看分支: git branch
创建分支: git branch <name>
切换分支: git checkout <name>
创建+切换分支: git checkout -b <name>
合并某分支到当前分支: git merge <name>
删除分支: git branch -d <name>
如果要丢弃一个没有被合并过的分支,可以通过 git branch -D <name> 强行删除。
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内容也删了:
以上是关于Git分支的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段15——git命令操作一个完整流程