環境
macOS 10.15.4
git 2.20.1
前提・実現したいこと
GitHubでpushを行おうとした際にエラーが発生してしまい実行ができないためそのエラーの解消をして、標準の実行を行いたいです。ちなみにこのpushは最初のpushになります。
発生している問題・エラーメッセージ
エラーの内容は下記になります。
S git push -u origin master error: src refspec master does not match any. error: failed to push some refs to 'https://github.com/〇〇/〇〇.git'
試したこと
強制pushなどももちろん試しました。しかしエラーの解消には至らず...
pushに至るまでコマンドの詳細を記述します。
Gitが正常にインストールをされていることを確認
$ git --version git version 2.20.1
コミットを実行しました。
$ git add . $ git commit -m "commit" *** Please tell me who you are. Run git config --global user.email "you@example.com" git config --global user.name "Your Name" to set your account's default identity. Omit --global to set the identity only in this repository. fatal: unable to auto-detect email address (got 'root@a9b19e00552e.(none)') root@a9b19e00552e:/myapp# git remote add origin https://github.com/〇〇/〇〇.git fatal: remote origin already exists.
GitHubとの連動もできています。
$ git remote add origin https://github.com/〇〇/〇〇.git fatal: remote origin already exists.
状況の確認も行ってみました。
$ git status On branch master No commits yet Changes to be committed: (use "git rm --cached <file>..." to unstage) (省略)
この時点でNo commits yetのワードが気になりましたが調べても理解に至りませんでした...
この状況でもしエラーの解決方法が分かる方いらっしゃいましたらご教授して頂けませんでしょうか。よろしくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/05/20 14:29