无法将新分支推送到github上的远程仓库(使用-u标志)

时间:2017-08-01 19:07:52

标签: git github

我使用github copy& amp简单地克隆了一个项目。粘贴存储库URL,创建新分支:

git checkout -b <branch>

添加并提交更改,然后使用-u标志推送:

git push -u origin <branch>

exactly how describe here

我得到了:

  

remote:找不到存储库。致命的:存储库   &#39; https://github.com/companyUsername/MyRepo.git/&#39;找不到

之前从未发生过......太奇怪了:/

1 个答案:

答案 0 :(得分:0)

问题:错误的起源

  

remote:找不到存储库。致命的:存储库&#39; https://github.com/MyRepo.git/&#39;找不到

https://github.com/username/repository.git格式检查您的网址。您省略了用户名。您可以删除并重新添加您的来源:

git remote rm origin
git remote add origin "https://github.com/username/repository.git"