我的git工作正常,然后没有进行任何更改,就开始出现以下问题,
我尝试过重置缓存



并且已经经历了几乎所有我能找到的stackoverflow答案

remote: Password authentication is not available for Git operations.
remote: You must use a personal access token or SSH key.
remote: See https://github.ibm.com/settings/tokens or
'https://github.ibm.com/WBurney/Blockchain_SDO.git/':
The requested URL returned error: 403

谢谢

最佳答案

如果您已向GitHib企业帐户注册了公共(public)ssh密钥,则可以使用ssh url避开该问题

cd /path/to/repo
git remote set-url origin [email protected]:WBurney/Blockchain_SDO.git
git push

但是关于您的原始问题,请尝试并遵循“Creating a personal access token for the command line”。

如果您使用的是Mac,请使用update your credentials from the OSX Keychain

您可能需要remove an old cached credential first
(作为commentedRayLoveless)

关于git - Github Enterprise-远程:密码身份验证不适用于Git操作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45903106/

10-13 08:58