git分支管理

3.3 Git 分支 - 分支管理

https://git-scm.com/book/zh/v2/Git-分支-分支管理

https://blog.csdn.net/qq_15037231/article/details/79137753

Git多分支平行发展(一个仓库包含多个不同的项目)

https://www.jianshu.com/p/922590337264

git分支查看及切换

2018年06月19日 14:43:40 EchoShelter 阅读数:36260

1. 查看远程分支

git branch -a

  • 1

带有“*”号的表示当前分支 

2. 查看本地分支

git branch

3. 切换分支命令

git checkout -b v1 origin/v1

# 切换回master

git checkout master

4. 参考文章 

https://blog.csdn.net/u014540717/article/details/54314126

分支管理

现在已经创建、合并、删除了一些分支,让我们看看一些常用的分支管理工具。

git branch 命令不只是可以创建与删除分支。 如果不加任何参数运行它,会得到当前所有分支的一个列表:

$ git branch

  iss53

* master

  testing

注意 master 分支前的 * 字符:它代表现在检出的那一个分支(也就是说,当前 HEAD 指针所指向的分支)。 这意味着如果在这时候提交,master 分支将会随着新的工作向前移动。 如果需要查看每一个分支的最后一次提交,可以运行 git branch -v 命令:

$ git branch -v

  iss53   93b412c fix javascript issue

* master  7a98805 Merge branch 'iss53'

  testing 782fd34 add scott to the author list in the readmes

--merged 与 --no-merged 这两个有用的选项可以过滤这个列表中已经合并或尚未合并到当前分支的分支。 如果要查看哪些分支已经合并到当前分支,可以运行 git branch --merged:

$ git branch --merged

  iss53

* master

因为之前已经合并了 iss53 分支,所以现在看到它在列表中。 在这个列表中分支名字前没有 * 号的分支通常可以使用 git branch -d 删除掉;你已经将它们的工作整合到了另一个分支,所以并不会失去任何东西。

查看所有包含未合并工作的分支,可以运行 git branch --no-merged:

$ git branch --no-merged

  testing

这里显示了其他分支。 因为它包含了还未合并的工作,尝试使用 git branch -d 命令删除它时会失败:

$ git branch -d testing

error: The branch 'testing' is not fully merged.

If you are sure you want to delete it, run 'git branch -D testing'.

如果真的想要删除分支并丢掉那些工作,如同帮助信息里所指出的,可以使用 -D 选项强制删除它。

prev | next

原文地址:https://www.cnblogs.com/sundaysgarden/p/10985109.html