Daily learning accumulation ###开启学习之路 ####Git使用
-
git国内镜像下载地址:git下载
-
tortoisegit下载地址:tortoisegit下载
-
git安装教程:教程地址
-
配置公钥网址:配置公钥操作
-
无法clone解决方案:将clone地址'https更改为git'
-
无法push上仓库:查看是否有代理设置,并取消设置
git config --global http.proxy socks5://127.0.0.1:108
git config --global https.proxy socks5://127.0.0.1:108
-
若有需要,可以设置设置http、https代理:
git config --global http.proxy socks5://127.0.0.1:1080
git config --global https.proxy socks5://127.0.0.1:1080
-
查看http、https代理配置情况
git config --global --get http.proxy
git config --global --get https.proxy
-
解决“Repository not found.”提示错误:
$ git credential-manager uninstall
$ git credential-manager install
>>
>
>