常见Git的错误解决办法
2019-02-19 本文已影响1人
CarlosLynn
错误解决:error setting certificate verify locations:
git config --system http.sslverify false
git push的时候每次都要输入用户名和密码的问题解决
换了个ssh key,发现每次git push origin master的时候都要输入用户名和密码
原因是在添加远程库的时候使用了https的方式。。所以每次都要用https的方式push到远程库
查看使用的传输协议:
git remote -v
C:\MyWork\wdy\wdy_android>git remote -v
origin https://gitee.com/qqjd/wdy_android.git (fetch)
origin https://gitee.com/qqjd/wdy_android.git (push)
重新设置成ssh的方式:
git remote rm origin
git remote add origin git@github.com:username/repository.git
git push -u origin master
再看下当前的传输协议:
wuxiao@wuxiao-C-B150M-K-Pro:~/MyGithub/DailyBlog$ git remote -v
origin git@github.com:toyijiu/DailyBlog.git (fetch)
origin git@github.com:toyijiu/DailyBlog.git (push)
作者:小白笑苍
来源:CSDN
原文:https://blog.csdn.net/toyijiu/article/details/73611874
版权声明:本文为博主原创文章,转载请附上博文链接!