Guest User

Untitled

a guest
Dec 14th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. # Override git flow config
  4. git flow init -f -d
  5.  
  6. git config gitflow.branch.master "master"
  7. git config gitflow.branch.develop "develop"
  8. git config gitflow.prefix.feature "feature/"
  9. git config gitflow.prefix.release "release/"
  10. git config gitflow.prefix.hotfix "hotfix/"
  11. git config gitflow.prefix.support "support/"
  12. git config gitflow.prefix.versiontag "v"
Add Comment
Please, Sign In to add comment