Installing git-flow on Ubuntu 10.10 fails silently
Asked Answered
L

1

5

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?

Levigate answered 30/11, 2010 at 19:10 Comment(0)
E
9

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

Extravagance answered 1/12, 2010 at 10:17 Comment(1)
it's a known issue, support.github.com/discussions/site/…Extravagance

© 2022 - 2024 — McMap. All rights reserved.