无法将更改推送到gerrithub.io

时间:2017-04-19 15:20:20

标签: github gerrit

我在这里有回购Link to the repo

我克隆了它并进行了一些更改,但是当我尝试推动它时。

它给了我以下错误:

$ git push origin HEAD:refs/for/master
Username for 'https://review.gerrithub.io': ardyflora
Password for 'https://ardyflora@review.gerrithub.io':
fatal: Authentication failed for 
'https://review.gerrithub.io/ardyflora/virginPulseAuto/'

我甚至添加了ssh密钥。任何指针或帮助将不胜感激:)

1 个答案:

答案 0 :(得分:0)

HTTPS的身份验证失败。更好的是你可以试试SSH。

使用浏览器复制存储库的SSH URL,并更新您的本地origin

$ git remote set-url origin <ssh-clone-url>

$ git push origin HEAD:refs/for/master