初回のgit pushでfailed to push some refs toエラーが出たときの対処法
1分目次
解決法
ターミナル
$ vim .git/config
9行目あたりに下記のような記述を見つけた場合は注意が必要です。
.git/config
url = https://github.com/ユーザー名/リポジトリ名.git
iキーでVimをinsert(編集)モードにし、下記箇所を編集できたらesc → :wq
と打ち上書き保存。
.git/config
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
precomposeunicode = true
[remote "origin"]
url = git@github.com:ユーザー名/リポジトリ名.git fetch = +refs/heads/*:refs/remotes/origin/*
解説
Githubで2段階認証を設定している場合、httpsでなく、ssh接続でなければ
ターミナル
error: src refspec master does not match any
error: failed to push some refs to 'https://github.com/9631kunn/hogehoge.git'
このようなエラーが出てしまう。