A cheatsheet on the usage of git flow
Go to file
Daniel Kummer 402d9dd480 Merge pull request #52 from bmarkovic/gh-pages
Added Croatian translation
2016-04-02 16:43:06 +02:00
css Adding catalan translation 2014-12-01 19:02:54 +01:00
files add commands image 2012-09-07 09:38:08 +02:00
img add commands image 2012-09-07 09:38:08 +02:00
.gitignore Improved .gitignore file 2016-02-10 22:10:36 +01:00
index.ca_CA.html Added polish language view 2016-02-10 22:11:25 +01:00
index.de_DE.html Added polish language view 2016-02-10 22:11:25 +01:00
index.el_GR.html Added polish language view 2016-02-10 22:11:25 +01:00
index.es_ES.html Added polish language view 2016-02-10 22:11:25 +01:00
index.fr_FR.html Added polish language view 2016-02-10 22:11:25 +01:00
index.hr_HR.html Added Croatian translation 2016-02-26 10:32:09 +01:00
index.html Added polish language view 2016-02-10 22:11:25 +01:00
index.it_IT.html Added polish language view 2016-02-10 22:11:25 +01:00
index.ja_JP.html Added polish language view 2016-02-10 22:11:25 +01:00
index.ko_KR.html Added polish language view 2016-02-10 22:11:25 +01:00
index.nl_NL.html Added polish language view 2016-02-10 22:11:25 +01:00
index.pl_PL.html Minor corrections 2016-02-11 17:42:30 +01:00
index.pt_BR.html Added polish language view 2016-02-10 22:11:25 +01:00
index.ro_RO.html Added polish language view 2016-02-10 22:11:25 +01:00
index.ru_RU.html Added polish language view 2016-02-10 22:11:25 +01:00
index.tr_TR.html Added polish language view 2016-02-10 22:11:25 +01:00
index.uk_UK.html Added polish language view 2016-02-10 22:11:25 +01:00
index.vi_VN.html Added polish language view 2016-02-10 22:11:25 +01:00
index.zh_CN.html Added polish language view 2016-02-10 22:11:25 +01:00
index.zh_TW.html Added polish language view 2016-02-10 22:11:25 +01:00
README.md fix with markdown syntax 2013-03-14 14:51:54 +08:00

git-flow-cheatsheet

A cheatsheet on the usage of git flow, visit http://danielkummer.github.com/git-flow-cheatsheet/

GIT FLOW

Git extensions to provide high-level repository operations for Vincent Driessen's branching model. Read more

INIT:

$ git flow init

TRACK DEVELOP REMOTELY ON GITHUB:

$ git push origin develop

FEATURES:

Use to develop new features starting from the develop branch. Merge back into develop branch waiting for a reasonable amount of features to be there before declaring it a release.

$ git flow feature
$ git flow feature start <name>
$ git flow feature finish <name>
usage: git flow feature [list] [-v]
       git flow feature start [-F] <name> [<base>]
       git flow feature finish [-rFk] <name|nameprefix>
       git flow feature publish <name>
       git flow feature track <name>
       git flow feature diff [<name|nameprefix>]
       git flow feature rebase [-i] [<name|nameprefix>]
       git flow feature checkout [<name|nameprefix>]
       git flow feature pull <remote> [<name>]

RELEASES:

Use to group together latest development (features) add a few finishing touches if necessary and send to production. All last changes will merge back to master and develop so new features will start from current release.

$ git flow release
$ git flow release start <release> [<base>]
$ git flow release finish <release>
usage: git flow release [list] [-v]
       git flow release start [-F] <version>
       git flow release finish [-Fsumpk] <version>
       git flow release publish <name>
       git flow release track <name>

HOTFIXES:

Similar to releases but the hotfix branch starts off master to avoid unvoluntary send to production of unwanted features that my be present in branches. The quick fix must be used when an important bug arises in production which must be fixed and can't wait for other features to be ready. It merges back to master and develop.

$ git flow hotfix
$ git flow hotfix start <release> [<base>]
$ git flow hotfix finish <release>
usage: git flow hotfix [list] [-v]
       git flow hotfix start [-F] <version> [<base>]
       git flow hotfix finish [-Fsumpk] <version>