From 25a43a901bcbda50661df2c14af46915e20106a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gregor=20B=C3=BCckendorf?= Date: Tue, 9 Nov 2021 09:22:05 +0100 Subject: [PATCH] feat(gitconfig): make main the default branch name for new repos --- .gitconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitconfig b/.gitconfig index 2a7f661..bdf8e97 100644 --- a/.gitconfig +++ b/.gitconfig @@ -22,3 +22,5 @@ [alias] graph = log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold cyan)%aD%C(reset) %C(bold green)(%ar)%C(reset)%C(bold yellow)%d%C(reset)%n'' %C(white)%s%C(reset) %C(dim white)- %an%C(reset)' --all chronograph = graph --date-order +[init] + defaultBranch = main