错误提示:
remote: coding.net tips : [you have no permission to access this repo.]
fatal: unable to access ‘https://git.coding.net/xxxxxxxx/xxxx.git/‘: the requested url returned error: 403
错误原因:
git 客户端缓存了错误的密码,账号密码和本地存储的混淆,不正确;一般是多个git 账号会导致这样的情况,如自己的git账号 和在公司的git 账号,同时一起用
简单方法:
git clone的时候直接加上用户名和密码,一步解决。
正常一般拉取线上代码的先
1.git clone
2.在输入用户名
3.输入密码
等三步操作,这样子太麻烦了
直接一步操作,也可以解决上面的问题。
git clone http://用户名:密码@地址
例子
如果你用户叫123xxx 密码是mypassword 地址是git.xxx.com/www.git