现有的Android studio项目导入Github。推拒绝?

时间:2016-08-18 04:40:12

标签: android git github

我尝试按照本教程: https://www.londonappdeveloper.com/how-to-use-git-hub-with-android-studio/

但是当我推动时说 推送拒绝:推送到原始/主人被拒绝

我怀疑是远程添加的原因? 如果我的项目路径是https://github.com/myusername/projectname 我的远程添加应该添加github.com/myusername/projectname.git?

1 个答案:

答案 0 :(得分:0)

首先,检查您是否在项目的根目录中找到了本地git存储库。

然后检查您是否正确添加了远程原点。

检查遥控器:

git remote set-url origin https://github.com/myusername/projectname.git

如果现有的远程原点出错,请更改它:

git remote add origin https://github.com/myusername/projectname.git

如果它不存在,请添加:

{{1}}