git分支管理

1 创建分支

$ git checkout -b iss53
Switched to a new branch 'iss53'

相当于执行下面两条命令

$ git branch iss53
$ git checkout iss53

2 查看分支

$ git branch

3 切换分支

$ git checkout master

4 合并分支

$ git merge iss53

5 删除分支

$ git branch -d iss53

你可能感兴趣的:(git分支管理)