首页 > 代码库 > git-flow
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。