github入门

Git初步入门(二)分支操作

2016-04-02  本文已影响39人  水书

在进行多个并行作业时,我们用到分支

1.显示分支一览表

$git branch

2.创建切换分支

创建名为 feature-A的分支

$git checkout -b feature-A

或者

$ git branch feature-A
$ git checkout feature-A

切换到master分支

$git checkout master

切换回上一个分支

$git checkout -

合并分支

首先切换到master分支

$git checkout master

合并feature-A

$git merge --on--off feature-A

以图表的形式查看分支

$git log --graph
上一篇 下一篇

猜你喜欢

热点阅读