我尝试在debian服务器上安装phabricator,并对我的服务器执行了几个命令:
# sudo apt-get install mysql-server apache2 git-core git php5 php5-mysql php5-gd php5-curl php-apc php5-cli -y
# mkdir /var/www/phabricator && cd $_并且,当我尝试运行该命令时:
# git clone https://github.com/phacility/libphutil.git错误消息:
Cloning into libphutil...
error: Failed connect to github.com:443; Operation now in progress while accessing https://github.com/phacility/libphutil.git/info/refs
fatal: HTTP request failed我的问题是:如果有任何安装步骤被遗漏了,如何解决这个问题?
提前谢谢..
发布于 2016-05-23 16:08:04
以in this question身份检查GIT_CURL_VERBOSE=1 git clone ...的输出
如果你有一个为互联网访问配置的代理,也可以在你的Debian会话上使用you will have to set it up (export http_proxy=http://...和export https_proxy=http://... )。
https://stackoverflow.com/questions/37382311
复制相似问题