Created
October 14, 2012 04:40
-
-
Save tomoyukiinoue/3887363 to your computer and use it in GitHub Desktop.
Install git-flow for Mac OS X Mountain Lion (10.8.2)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ brew update | |
$ brew install git-flow | |
$ cd myapp | |
$ git init | |
$ git init flow | |
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? [] | |
$ git branch | |
* develop | |
master |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment