目前,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”命令什么也不返回。我期待原始回购。
所以,我创建了原始仓库,如下所示:
$ 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'