每当在Cloud9中尝试通过终端推送到github存储库时,都会出现以下错误:

fatal: Authentication failed

我在用
git push origin master

推送到存储库。我在github中添加了我的ssh key ,所以这不是问题。

最佳答案

可能您已将存储库克隆到Cloud9中。
您可能需要将远程来源从https更改为SSH,否则身份验证错误将继续存在。

使用来自Douglas C. Ayers' Cloud9 FAQ的解决方案2:
git remote set-url origin YOUR_REMOTE_SSH_URL

关于git - Cloud9 git push->致​​命: Authentication failed,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19918904/

10-13 09:32