我被添加为私人仓库的成员。我访问了repo页面并复制了git repo地址:https://github.com/xxxxxxx/xxxxxxxx.git
然后我在终端输入以下内容:
git clone https://github.com/xxxxxxx/xxxxxxxx.git
我编辑了一些文件并创建了一个新的本地分支:
git checkout -b new_branch
然后我添加了更改并提交了它们:
git add -A
git commit -m 'Commit message here'
接下来,我尝试将更改推送到repo以创建新的远程分支:
git push -u origin new_branch
我也尝试过:
git push origin new_branch
两者都无法推送更改并显示以下错误消息:
remote: Repository not found.
fatal: repository 'https://github.com/xxxxxxx/xxxxxxxx.git/' not found
我在Github(https://help.github.com/articles/error-repository-not-found/)上找到了这个页面,它解决了我看到的错误信息,但是repo拼写正确,我是可以访问它的团队的成员(我克隆了它第一名),我没有使用SSH,所以这些都不适用于我。
为什么我无法根据本地分支创建远程Github分支的任何想法?