Versions Compared

Key

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

...

Code Block
wget --no-check-certificate -q https://raw.github.com/petervanderdoes/gitflow/develop/contrib/gitflow-installer.sh
chmod +x gitflow-installer.sh
sudo ./gitflow-installer.sh install stable

Windows:

  1. Update cygwin and make sure latest version of git is installed.
  2. Download and execute gitflow-installer.sh
Code Block
wget -nd -nv --no-check-certificate -q https://raw.github.com/petervanderdoes/gitflow/develop/contrib/gitflow-installer.sh

...


chmod +x gitflow-installer.sh

...


./gitflow-installer.sh install stable

References:

https://github.com/petervanderdoes/gitflow/wiki
http://danielkummer.github.io/git-flow-cheatsheet/
https://www.atlassian.com/git/tutorials/comparing-workflows/feature-branch-workflow/

...

If you need to redo the git flow init, simply execute:

 

Code Block
git flow init -f

 

Reference:

...