mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-08-09 23:07:56 +02:00
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:
@ -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
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user