当我把我的项目推到git实验室时,第一个命令是成功的。
git add .
git commit -m "Initial commit",
然后在第三个命令中
git push -u origin main
得到这样的错误,
git push -u origin main
>>
>>
fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
我该怎么弥补
2条答案
按热度按时间2izufjch1#
您缺少的是到
push
的远程项目的链接。例如:
您从一个名为
my-project
的远程项目开始,然后将其clone
到本地文件夹:或者从本地存储库
my_repo
开始qcuzuvrc2#
不确定您正在执行的过程是什么,但只是为了确保-运行
git remote -v
时的输出是什么?你是克隆了一个仓库还是初始化了一个?如果初始化本地存储库,则应将其链接到远程存储库
git remote add origin <git-repo-url>