git clone 403 The requested URL returned error: 403 remote: Forbidden

今天在调整Jenkins 任务时 使用

git clone --depth=1  -b master https://userName:[email protected] 

发现 提示

remote: Forbidden
fatal: unable to access 'https://userName:[email protected]': The requested URL returned error: 403

权限问题,应该git 客户端有问题:

git config -l

发现有配置了 userNaem,userEmail 属性。猜测是权限问题所以直接清除

git config --global --unset userName
git config --global --unset userEmail

成功!

你可能感兴趣的:(工具,git)