Skip to content

Instantly share code, notes, and snippets.

@tanish-kr
Created February 15, 2016 02:50
Show Gist options
  • Save tanish-kr/2a69614444e599cdc8ad to your computer and use it in GitHub Desktop.
Save tanish-kr/2a69614444e599cdc8ad to your computer and use it in GitHub Desktop.
git flow initコマンド prefixの消し方 ref: http://qiita.com/kitaro_tn/items/a021bdc2ef453b014261
$ git flow init
Branch name for production releases: [master]
Branch name for "next release" development: [develop]
Feature branches? [feature/]
Release branches? [release/]
Hotfix branches? [hotfix/]
Support branches? [support/]
Version tag prefix? [] v1
$ git flow init -f
Branch name for production releases: [master]
Branch name for "next release" development: [develop]
Feature branches? [feature/]
Release branches? [release/]
Hotfix branches? [hotfix/]
Support branches? [support/]
Version tag prefix? [v1] -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment