Git Gui dowload

问题


安装git desktop后,在cmd 使用git 命令,提示不是一个命令

在 C:\Users\[username]\AppData\Local\GitHubDesktop\app-2.2.1\resources\app\git\cmd
*注意username 是win系统登入名称(Win10)
找到以上path, 添加至系统环境变量


git clone时,无法访问github地址

描述如下图

git20200102141650
由于近期公司网络做了调整限制,出现如上图错误

解决

参考链接:https://github.com/desktop/desktop/issues/2452

1
$git config --global http.sslVerify "false"

使用以上命令禁用安全验证即可(不知道这个是什么安全认证,但禁用后OK

更新时间:2020-1-2



git 推/拉取 报错 fatal:unable to access

git-error
解决方案如下

1
2
3
$ git config --global http.sslBackend "openssl"
$ git config --global http.sslCAInfo [path to .pem file]
https://github.com/desktop/desktop/issues/3260#issuecomment-342627199