git clone 无权限

错误提示:

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: 403git

错误缘由:

git 客户端缓存了错误的密码,帐号密码和本地存储的混淆,不正确;通常是多个git 帐号会致使这样的状况,如本身的git帐号 和在公司的git 帐号,同时一块儿用windows

简单方法:

clone 时,把帐号和密码带上,一块儿克隆,会把改帐号和密码也添加到~/.git-credentials缓存

http://yourname:password@git.coding.net/xxxxxxxx/xxxx.git/this

其余方法

windows /Users/xxx/.gitconfig 打开 .gitconfig 直接修改文件 
mac 输入命令行 git config –list 会出来 credential.helper=osxkeychain , 对应的也就是Mac的“钥匙串”系统,咱们能够经过Mac系统菜单页面“其余->钥匙串访问”功能,搜索git关键字查看spa

 

 

用带着用户名和密码的方法来clone注意: 密码中不可包括@ 或 : 字符.net

相关文章
相关标签/搜索