无法从android studio进入github

时间:2017-09-22 11:26:40

标签: android git android-studio github

我可以将我的项目添加到一个github帐户,但使用另一个帐户我不能。我已经关注GitHub这个网站并且工作正常:https://www.londonappdeveloper.com/how-to-use-git-hub-with-android-studio/#comment-32683

步骤是:1。创建一个新的git repo。 2.来自android studio-VCS>导入版本控制>创建git repo。 3.在项目的windows根目录中打开bash命令并输入> git remote add origin https://github.com/xxx/myProject.git 4.然后回到android studio和a)项目> Git>添加b)项目> Git>提交c)项目> Git>存储库>推送

这些步骤运行正常,我使用一个github帐户获得了成功的消息。但是有了另一个帐户,我无法做到,我得到了错误:

 Failed with error: fatal: unable to access 'https://github.com/Rashedul/myProject.git/': The requested URL returned error: 403

为什么会发生这种情况以及如何解决?

1 个答案:

答案 0 :(得分:0)

首先,您应该设置用户名和密码来访问URL并登录,首先设置身份验证。

git remote set-url origin https://yourusername@github.com/user/repo.git

然后在尝试git push

时会要求您输入密码

这是http身份验证格式。您也可以设置密码:

https://youruser:password@github.com/user/repo.git

您应该知道,如果您这样做,您的github密码将以纯文本形式存储在.git目录中,这显然是不可取的。