既存のローカルリポジトリのファイルをアップロードするためにgithubのリモートリポジトリfoo
を作りました。それをローカルリポジトリに結び付けようと思って、githubサイトの指示に従い、
git remote add origin git@github.com:私のgithubユーザー名/foo.git git branch -M main git push -u origin main
としました。すると、
C:リモートリポジトリ>git push -u origin main error: src refspec main does not match any error: failed to push some refs to 'github.com:私のgithubユーザー名/foo.git'
とエラーが出ました。
そこで、git status
と打つと、以下のように出ました。
C:リモートリポジトリ>git status On branch main No commits yet Untracked files: (use "git add <file>..." to include in what will be committed) リモートリポジトリ内にある未追跡のファイル名 nothing added to commit but untracked files present (use "git add" to track)
解決法を調べて、このサイトに従って以下のようにコマンドを打ったのですが、相変わらず先と同じエラーが出ます。
C:リモートリポジトリ>git push -u origin HEAD:main error: src refspec HEAD does not match any error: failed to push some refs to 'github.com:私のgithubユーザー名/foo.git'
どうすればいいでしょうか?
ご回答いただけると幸いです。
回答1件
あなたの回答
tips
プレビュー