2014-03-28 100 views
2

試圖設置Gitblit(http://gitblit.com/setup_go.html),讓我的團隊成員更容易訪問我們正在進行的操作。Gitblit在CONNECT後從代理服務器收到HTTP代碼504

反正,我跟着這個網站上說明:(http://gitblit.com/setup_go.html

現在有https://localhost:8443/repositories/

對於訪問權限的項目,我有兩套project_users和管理

訪問限制設置到:已驗證的克隆&推送 授權控制:授予所有已驗證用戶的RW +權限 我也是用戶分叉

當我去到項目頁面有人告訴我有什麼都沒有,並添加了一些意見和推https://[email protected]:8443/r/myProject.git

於是我運行:git clone https://[email protected]:8443/r/myProject.git和我給出的錯誤:

Cloning into 'myProject'... 
fatal: unable to access 'https://[email protected]:8443/r/myProject.git/': Received HTTP code 504 from proxy after CONNECT 

有什麼其他配置明智,我錯過了?

+0

代理連接回購機器上開發的消息是不尋常。也許[這個問題](http://stackoverflow.com/questions/19523903/how-to-temporarily-disable-git-http-proxy)會爲你提供有用的信息。 –

回答

2

多虧了評論,我發現了一些更多的信息:

解決方案如下:

1. set system_variable NO_PROXY = localhost 

2. run git config http.sslVerify=false如果擁有

相關問題