diff --git a/base/gitconfig b/base/gitconfig index b4cd420..eb1ca38 100644 --- a/base/gitconfig +++ b/base/gitconfig @@ -7,7 +7,7 @@ [alias] # main-branch outputs 'main' if there is a main branch, otherwise it outputs # 'master' - main-branch = "!if git rev-parse --verify main 2>&1 >/dev/null; then echo 'main'; else echo 'master'; fi" + main-branch = "!if git rev-parse --verify main >/dev/null 2>&1; then echo 'main'; else echo 'master'; fi" #Shows diff in log ll = log --stat --abbrev-commit