Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installing git-flow on Ubuntu 10.10 fails silently

I'm trying to install gitflow using the directions on the github readme a la : wget -q -O - https://github.com/nvie/gitflow/raw/develop/contrib/gitflow-installer.sh | sudo sh

And it's failing silently...just back to the prompt. Any ideas?

like image 393
Webjedi Avatar asked Nov 30 '10 19:11

Webjedi


1 Answers

Hey, it is a problem with github certificate and wget

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 ;)

like image 69
jobwat Avatar answered Oct 02 '22 13:10

jobwat