git flow的使用

git大家都比较熟悉,下面来简单说说git flow。通过几个简单的使用,来比较一下git flow的方便之处。为了演示方便,我现在远程新建一个代码仓库,名字叫做GitflowDemo。

要使用git flow,我们得先进行git flow的安装。

安装

mac

  1. Homebrew

     $ brew install git-flow-avh
    
  2. Macports

     $ port install git-flow-avh
    

Linux

$ apt-get install git-flow

Windows(cygwin)

$ wget -q -O - --no-check-certificate https://raw.github.com/petervanderdoes/gitflow-avh/develop/contrib/gitflow-installer.sh install stable | bash

我们以mac Homebrew为例进行安装。安装完成后,会提示安装成功。因为我已经安装过,所以提示已经安装完成。

安装完成后,我们进行git flow的初始化。

接下来将远程GitflowDemo仓库克隆到本地,并进入GitflowDemo目录。

初始化

    git flow init

执行完后,会出现一些命名提示,如图,一般使用默认就好。

git flow的使用_第1张图片

到此,git flow的安装以及初始化已经完成。下面来简单说说如何使用它。

开发新功能(feature)

需求: 新建一个test.txt,并添加内容。

使用git flow

$ git flow feature start my-feature
Switched to a new branch 'feature/my-feature'

结果如下:


git flow的使用_第2张图片

根据图中的提示,我们知道一个新的分支‘feature/my-feature’基于‘develop’分支创建好了,并且目前我们所在的分支为‘feature/my-feature’

我们在’feature/my-feature‘分支新建一个test.txt并提交。

$ git add test.txt
$ git commit -m "create test.txt"
[feature/my-feature e783fdf] create test.txt
1 file changed, 1 insertion(+)
create mode 100644 test.txt

我们来验证一下是不是完成了feature分支的开发。

$ git status
On branch feature/my-feature
nothing to commit, working tree clean

好,完成了。下一步:

$ git flow feature finish my-feature
Switched to branch 'develop'
Updating bde3a64..e783fdf
Fast-forward
 test.txt | 1 +
 1 file changed, 1 insertion(+)
 create mode 100644 test.txt
Deleted branch feature/my-feature (was e783fdf).

Summary of actions:
- The feature branch 'feature/my-feature' was merged into 'develop'
- Feature branch 'feature/my-feature' has been locally deleted
- You are now on branch 'develop'

根据提示,我们看到了git flow feature finish my-feature这条语句的作用。

  1. feature/my-feature分支被merge到了develop分支;
  2. 本地feature/my-feature分支被删除。现在我们处于develop分支。

来,我们验证下:

$ git branch
* develop
  master

发现确实处于develop分支。

不使用git flow

那么如果不使用git flow我们会怎么做呢?

  1. 新建一个分支

     $ git checkout -b my-feature develop
    
  2. 当开发完成后,合并分支。

     $ git merge --no-ff my-feature
     Already up-to-date.
    
  3. 删除本地my-feature分支

     $ git branch -d my-feature
    
  4. 提交更改到远程develop分支

     $ git push origin develop
    

比较两种方式就会发现,git flow方便了分支的管理,使用上更为简单。

发布(Releasing)

需求: 新建readMe.txt并加入版本号与日期。

使用git flow

一. 新建一个分支

$ git flow release start 1.0
git flow的使用_第3张图片

二. 新建一个readMe.txt并加入当前的版本号与时间。
完成后将文件放到暂存区

$ git add readMe.txt
$ git commit -m "update version to 1.0"

// Or

$ git commit -am "update version to 1.0"

三. 完成分支

$ git flow release finish 1.0
git flow的使用_第4张图片

根据上图的提示,我们发现这一步做了如下的事情。

  1. release/1.0分支已经被merge到了‘master’分支。
  2. 版本被打上tag‘1.0’。
  3. ’release/1.0‘被merge到了develop分支。
  4. 本地’release/1.0‘被删除。
  5. 切换分支到develop。

四. 更新远程分支。

$ git push origin master
$ git push origin develop
$ git push --tags

不使用git flow

一. 创建release-1.2分支

$ git checkout -b release-1.2 develop
Switched to a new branch 'release-1.2'
git flow的使用_第5张图片

二. 提交到分支release-1.2

$ git commit -am "Bumped version number to 1.2"

三. 切换分支到master

$ git checkout master

四. 合并‘release-1.2’到'develop'分支

$ git merge --no-ff release-1.2

五. 打上标签(tag)

git tag -a 1.2 -am "message"

切换到develop分支,并合并到develop分支。

$ git checkout develop
$ git merge --no-ff release-1.2

六. 删除本地分支realse-1.2

$ git branch -d release-1.2

七. 更新远程分支。

$ git push origin master
$ git push origin develop
$ git push --tags

如果说在开发新功能的时候你没体会到git flow的优点,那么在release版本的时候,你肯定能很明显地感受到git flow的优势。

Hotfix分支

git flow基于master分支,用于紧急修复,修改完成后要merge到master,develop分支

使用git flow

$ git flow hotfix start 1.0.1

不使用git flow

$ git checkout -b hotfix-1.2.1 master

其他步骤与在release开发相同,同样不要忘了在master分支打上tag。

你可能感兴趣的:(git flow的使用)