Installing git -flow on Ubuntu 10.10 does not work

I am trying to install gitflow using pointers to github readme a la: wget -q -O - https://github.com/nvie/gitflow/raw/develop/contrib/gitflow-installer.sh | sudo sh

And he fails ... just back to the tip. Any ideas?

+5
source share
1 answer

Hey this is a problem with github and wget certificate

ERROR: certificate common name `*.github.com' doesn't match requested host name `github.com'.
To connect to github.com insecurely, use `--no-check-certificate'.

just override wget checks

wget --no-check-certificate -q -O - https://github.com/nvie/gitflow/raw/develop/contrib/gitflow-installer.sh | sudo sh

works just fine;)

+9
source

All Articles