gpt4 book ai didi

git - 为什么 Git 在我尝试推送到原点时告诉我 "No such remote ' origin'"?

转载 作者:IT王子 更新时间:2023-10-29 01:25:22 28 4
gpt4 key购买 nike

我是 Git 的新手;我最近才创建了一个 GitHub 帐户。

我刚刚尝试推送我的第一个存储库(示例项目),但出现以下错误:

No such remote 'origin'

我运行了以下命令:

git init
git commit -m "first commit"
git remote add origin https://github.com/VijayNew/NewExample.git
git push -u origin master

但是,当我运行 git commit -m "first commit"时,我收到以下消息:

nothing added to commit but untracked files present (use "git add" to track)

然后我尝试设置origin,使用

git remote set-url origin https://github.com/VijayNew/NewExample.git

但是我得到了以下错误:

No such remote 'origin'

我做错了什么,我该怎么办?

最佳答案

两个问题:

1 - 你从未告诉 Git 开始跟踪任何文件

你写你跑了

git init
git commit -m "first commit"

而且,在那个阶段,你得到了

nothing added to commit but untracked files present (use "git add" to track).

Git 告诉你,你从来没有告诉它开始跟踪任何文件,它没有什么可以拍快照的。因此,Git 不创建提交。在尝试提交之前,您应该告诉 Git(例如):

Hey Git, you see that README.md file idly sitting in my working directory, there? Could you put it under version control for me? I'd like it to go in my first commit/snapshot/revision...

为此你需要 stage感兴趣的文件,使用

git add README.md

运行之前

git commit -m "some descriptive message"

2 - 你还没有设置远程仓库

然后你跑了

git remote add origin https://github.com/VijayNew/NewExample.git

在那之后,您的本地存储库应该能够与位于指定 URL ( https://github.com/VijayNew/NewExample.git) 的远程存储库进行通信...前提是远程存储库确实存在!但是,您似乎从来没有在 GitHub 上创建过远程仓库:在撰写此答案时,如果我尝试访问相应的 URL,我会得到

enter image description here

在尝试推送到该远程存储库之前,您需要确保后者确实存在。所以去 GitHub 并创建有问题的远程仓库。只有这样,您才能成功 push

git push -u origin master

关于git - 为什么 Git 在我尝试推送到原点时告诉我 "No such remote ' origin'"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25503017/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com