日本語に苦戦しているSYOです。
Qiita CLI
を使用して、qiita init
を実行したディレクトリ全体をGitHub
にpush
しようとした際に、以下の問題に遭遇しました。
これは問題を解決するためのメモです。
事象
コマンド
git remote add origin https://XXXXXX.git
git branch -M main
git push -u origin main
エラー
error: src refspec main does not match any
error: failed to push some refs to 'https://XXXXXX.git'
解決
原因
- 変更をコミットしていない
コマンド
git add .
git commit -m "First Commit"
git push -u origin main
参考
Qiita CLI
Github 初push時のエラー ~ src refspec main does not main any