Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


Cent OS/RedHat:

 

Code Block
sudo yum install gitflow

 

Mac OS X:


...

See Installing on Windows -- I updated cygwin and then found their wget command syntax was wrong; below is what worked for me:

 

Code Block
wget -q --no-check-certificate https://github.com/nvie/gitflow/raw/develop/contrib/gitflow-installer.sh

 

Both --no-clobber and --convert-links were specified, only --convert-links will be used.
github.com/nvie/git 100%[=====================>]   2.09K  --.-KB/s   in 0s

...

âgitflow/gitflow-shFlagsâ -> â/usr/local/bin/gitflow-shFlagsâ

Git Flow Init

 
Note: git flow init adds the following lines to the .git/config file in your local repo:
[gitflow "branch"]
        master = master
        develop = develop
[gitflow "prefix"]
        feature = feature/
        release = release/
        hotfix = hotfix/
        support = support/
        versiontag = v
If you need to redo the git flow init, simply execute:
git flow init -f

Reference:

...