-
Notifications
You must be signed in to change notification settings - Fork 11
Installing on Mac OS X
Peter van der Does edited this page Dec 20, 2012
·
17 revisions
In the works
Even using wget its a one line effort.
wget --no-check-certificate -q -O - https://github.com/petervanderdoes/gitflow/raw/develop/contrib/gitflow-installer.sh install stable| sudo bash
wget --no-check-certificate -q -O - https://github.com/petervanderdoes/gitflow/raw/develop/contrib/gitflow-installer.sh install develop| sudo bash
wget: command not found? curl is only two. (Note that URL is where the above URL currently redirects.)
curl https://raw.github.com/petervanderdoes/gitflow/develop/contrib/gitflow-installer.sh > gitflow-installer.sh
chmod a+x gitflow-installer.sh
sudo bash gitflow-installer.sh install stable
sudo bash gitflow-installer.sh install develop
Install GNU getopt via Homebrew:
brew install gnu-getopt.
Create a ~/.gitflow_export with the content alias getopt="$(brew --prefix gnu-getopt)/bin/getopt".