查看分支git branch
- git branch 查看本地所有分支
- git branch -r 查看远程所有分支
- git branch -a 查看本地和远程所有分支
如图,一般当前本地分支前带有“*”号且为绿色,远程分支为红色
新建分支
新建一个分支,但不切换。如图新建了test分支,但是目前依旧在dev5.7分支上。
你可以使用 git checkout -b <branchname> 新建并切换至新分支
删除分支 git branch
1. git branch -d <branchname> 删除本地分支,其中<branchnane>为本地分支名
2.git branch -d -r <branchname>删除远程分支,其中<branchname>为本地分支名