Gitの初期設定時にmasterからmainへbranch名を変更できない場合の対処法
超絶初心者です。
masterからmainへ変更する際のエラー
git initコマンドを実行後、git branch -M mainを行うとエラー。
/work/project$ git init
/work/project$ git branch -M main
error: refname refs/heads/master not found
fatal: Branch rename failed
REDEME.mdファイルを作成後、addとcommitを行った後に再度実行すると成功。
/work/project$ echo "# project" >> README.md
/work/project$ git add README.md
/work/project$ git commit -m "first commit"
/work/project$ git branch -M main
成功後に確認すると、refs/heads/にmainファイルが作成されていた。
失敗した段階ではrefs/heads/にはmasterファイルがなかった。
恐らく、addまたはcommitを実行した際にmasterファイルが作成され、そのためmasterからmainへのbranch名の書き換えが成功したっぽい。
Author And Source
この問題について(Gitの初期設定時にmasterからmainへbranch名を変更できない場合の対処法), 我々は、より多くの情報をここで見つけました https://qiita.com/ststs/items/6e7773aa33107652e69e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .