赞
踩
问题描述:
拉取代码时会遇到下文的错误
unable to access ‘https://codeup.aliyun.com/xxxx.git/’: The requested URL returned error: 403
解决方案
在确认账号有权限以及代码库地址正确的前提下,可以看下是不是开启了密码缓存导致的。
使用以下命令禁用密码缓存:
git config --local --unset credential.helper
git config --global --unset credential.helper
git config --system --unset credential.helper
如果想要开启密码缓存,请执行下面的命令:
git config --global credential.helper store
问题得到解决,可以愉快的coding了!!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。