0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Gitでデフォルトブランチの名前を変更する方法

Posted at

Githubを使っていると、このように言われる。

echo "hoge" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin git@github.com:hoge/fuga.git
git push -u origin main

この中のgit branch -M mainという箇所が今回取り上げる部分になる。

以前は、デフォルトブランチの名前はmasterだったのだが、これが良くないからということで変更になった。
そのため、デフォルトブランチの名前をmasterから最初に変えてねというものなのだが、毎回これをやるのが面倒くさい。

グローバルの設定を変えてしまう

私の場合はデフォルトブランチ名はdevelopmentを使用するのだが、
そんな時には、こうするとよい。

git config --global init.defaultBrach development

これで次回からgit initするとデフォルトのブランチがdevelopmentになる。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?