git-flow

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git-flow相关的知识,希望对你有一定的参考价值。

Using git-flow to automate your git branching workflow.

(原文)

技术分享

After installing git-flow (brew install git-flow), you can start using git-flow in your repository by using it’s init command. You can use it in existing projects, but let’s start a new repository:

1
2
3
4
5
6
7
8
9
10
11
12
$ git flow init
Initialized empty Git repository in ~/project/.git/
No branches exist yet. Base branches must be created now.
Branch name for production releases: [master]
Branch name for "next release" development: [develop]
 
How to name your supporting branch prefixes?
Feature branches? [feature/]
Release branches? [release/]
Hotfix branches? [hotfix/]
Support branches? [support/]
Version tag prefix? []

Feature branches

1. git flow feature start authentication
2. git flow feature finish authentication

Versioned releases

1. git flow release start 0.1.0
2. git flow release finish 0.1.0

Hotfixing production code

1. git flow hotfix start assets
2. git flow hotfix finish assets

set git

1
2
3
4
5
6
7
git config --global alias.br branch
git config --global alias.ci commit
git config --global alias.co checkout
git config --global alias.st status
# 很好看地显示git log
git config --global alias.lg "log --color --graph --pretty=format:‘%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen (%cr) %C(bold blue)<%an>%Creset‘ --abbrev-commit --"
# 设置用户信息
 
 

以上是关于git-flow的主要内容,如果未能解决你的问题,请参考以下文章

Git-Flow - 在发布完成之前创建新功能

Git-flow 基本使用方法

git-flow工作流程

三个知识点搞定git-flow

sh #git#git-flow

git-flow