赞
踩
1. 所有分支/tag信息:
1.1 产看所有分支 git branch -a
ator@atorpc:~/workspace/soft/git_org_kernel/linux-stable$ git branch -a
* (HEAD detached at v4.19.82)
master
remotes/origin/HEAD -> origin/master
remotes/origin/linux-2.6.11.y
remotes/origin/linux-2.6.12.y
remotes/origin/linux-2.6.13.y
remotes/origin/linux-2.6.14.y
remotes/origin/linux-2.6.15.y
remotes/origin/linux-2.6.16.y
。。。
1.2 查看tag版本信息 git tag
ator@atorpc:~/workspace/soft/git_org_kernel/linux-stable$ git tag
v2.6.11
v2.6.11-tree
v2.6.12
v2.6.12-rc2
v2.6.12-rc3
v2.6.12-rc4
v2.6.12-rc5
v2.6.12-rc6
v2.6.12.1
.......
1.2 模糊查看分支
如果分支太多,还可以用此命令进行分支模糊查找: git branch | grep 'branchName'
2. 创建分支 :
2.1 git branch [branchname]
需要注
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。