🥺

git init をすると大量の hint が出て うわ ってなった話

2021/03/23に公開
1

概要

最近 git init をするとオレンジの文字で大量に hint が表示されるようになった。
なんとなく嫌な気持ちになったので対処法を記載します。

環境

  • Mac Catalina
  • git version 2.31.0

こんな具合に

git-learning
% git init
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint: 
hint: 	git config --global init.defaultBranch <name>
hint: 
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint: 
hint: 	git branch -m <name>
Initialized empty Git repository in /Users/hogehoge/git-learning/.git/

対処法

hint にある通り、デフォルトのブランチ名を設定してあげると表示されなくなる。

~
% git config --global init.defaultBranch main
% cat .gitconfig 
[init]
	defaultBranch = main

改めて git init を実行する

~
% cd git-learning 
% rm -r .git
% git init
Initialized empty Git repository in /Users/hogehoge/git-learning/.git/

Discussion

hatahata

master ではなく main に変えたいので、

git config --global init.defaultBranch master

ではなく

git config --global init.defaultBranch main

ではないでしょうか。