git: use master if it exists, otherwise use main

See https://github.com/ohmyzsh/ohmyzsh/pull/9049#issuecomment-654537347

Co-authored-by: Yufan You <ouuansteve@gmail.com>
This commit is contained in:
Marc Cornellà
2020-07-09 11:16:16 +02:00
parent d79941b789
commit 1db79f97f5
2 changed files with 6 additions and 6 deletions

View File

@ -27,10 +27,10 @@ function work_in_progress() {
# Check if main exists and use instead of master
function git_main_branch() {
if [[ -n "$(git branch --list main)" ]]; then
echo main
else
if [[ -n "$(git branch --list master)" ]]; then
echo master
else
echo main
fi
}