开发者

Installing git-flow on Ubuntu 10.10 fails silently

开发者 https://www.devze.com 2023-01-28 09:54 出处:网络
开发者_StackOverflow社区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

开发者_StackOverflow社区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?


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

0

精彩评论

暂无评论...
验证码 换一张
取 消