之前在windows上一直使用SourceTree没遇到过这个问题,今天换到ubuntu使用命令:
git clone "https://..."
返回503错误。
原因:
本机使用代理,没有设置git。
当然这是我错误原因,但是我看网路上大部分同学都是这个原因。
解决办法:
设置git:
git config –global http.proxy:127.0.0.1:1080
git config –global https.proxy:127.0.0.1:1080
以上处理后即可解决问题。