summaryrefslogtreecommitdiff
path: root/base
diff options
context:
space:
mode:
Diffstat (limited to 'base')
-rw-r--r--base/gitconfig2
1 files changed, 1 insertions, 1 deletions
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