git在远程仓库传项目出现的问题

第一个问题:

 当我们连接远程仓库时

git remote add origin https://github.com/DoYol/shopping_cart.git

跳出了这个错误:

error: remote origin already exists.

解决方法是:输入  git remote rm origin  清空仓库地址

第二个问题:

当仓库连接完成传项目时

git push -u origin master

跳出弹框让我们登录,随后报错

fatal: Custom certificate bundle not found at path: D:/鏉烆垯娆?Git/mingw64/ssl/certs/ca-bundle.crt

出现这种问题是我们仓库地址选择错了,应该采用SSH地址,不应该使用HTTPS地址

将仓库地址改为SSH格式就可以了

上一篇:2021-11-05


下一篇:fatal: remote origin already exists.解决方法