我使用github copy& amp简单地克隆了一个项目。粘贴存储库URL,创建新分支:
git checkout -b <branch>
添加并提交更改,然后使用-u标志推送:
git push -u origin <branch>
我得到了:
之前从未发生过......太奇怪了:/remote:找不到存储库。致命的:存储库 &#39; https://github.com/companyUsername/MyRepo.git/&#39;找不到
答案 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"