Installing git-flow on Ubuntu 10.10 fails silently

走远了吗. 提交于 2020-01-14 10:22:49

问题


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?


回答1:


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



来源:https://stackoverflow.com/questions/4317498/installing-git-flow-on-ubuntu-10-10-fails-silently

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!