gpt4 book ai didi

git - 本地存储库源不存在

转载 作者:太空狗 更新时间:2023-10-29 14:39:42 25 4
gpt4 key购买 nike

当前,windows 中的 git bash 指向 vikas@VIKAS-PC/D/code/myrepo (master)

我运行了以下 git 命令:

$ git config --global user.name "Vikas Sharma" 
$ git config --global user.email "vikas.sharma.in@gmail.com"

git init
git add .
git commit -m "initial commit"

$ git status
On branch master nothing to commit (working directory clean)

现在,“git remote”命令不返回任何内容。我期待原始 repo 。

因此,我创建了如下所示的源代码库:

$ git remote add origin D:/code/myrepo

$ git push origin "some-external-repo"

但是,出现以下错误:

error: src refspec myrepo does not match any.
error: failed to push some refs to 'D:/code/myrepo'

最佳答案

按照您的步骤:

git init   # You now have a .git directory
git add . # You've added the working directory files to the index
git commit -m "initial commit" # You now have one commit.

这些步骤都不会为您提供 Remote 。

git remote add origin D:/code/myrepo  # Claims that a remote is located there
git push origin # Tries to push to it.

如果不在 D:/code/myrepo 中使用“git init”手动创建存储库,这将失败。Git 不会在远程位置为您创建存储库。

关于git - 本地存储库源不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13189864/

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