Skip to content

Instantly share code, notes, and snippets.

@masenf
Created December 12, 2024 06:56
Show Gist options
  • Save masenf/0ad1728fb9ce51bd8749710e54e4792d to your computer and use it in GitHub Desktop.
Save masenf/0ad1728fb9ce51bd8749710e54e4792d to your computer and use it in GitHub Desktop.
zsh function to list git branches in a nice format

gb

Because I have loads and loads of git branches in my work repos, the git branch command, with its default settings, is essentially useless to me.

gb is my attempt to hack out a nice looking output of recently active branches in a repo.

image

Most of this example was cobbled together by reading man pages, trolling git source code, finding old stack overflow questions, and good old fashioned trial and error.

Hope it helps 🍻

gb_format=(
"%(color:brightgreen)%(HEAD)%(color:reset) "
"%(align:56)%(if)%(HEAD)%(then)%(color:brightgreen)%(else)%(color:brightred)%(end)%(refname:short)%(color:reset)%(end) "
"%(align:10)%(committerdate:short)%(end) %(color:dim white)%(committername)%(color:reset) "
"%0a ╚═[ %(color:brightcyan)%(subject)%(color:reset) ]"
)
function gb ()
{
pattern="$@[-1]"
if [[ "${pattern[0,2]}" == "--" ]]; then
# probably an arg for git branch
pattern=""
elif [[ -n "$pattern" ]]; then
# remove pattern from arg list
shift -p
fi
git branch --color --sort committerdate --format="${(j::)gb_format}" "$@" --list \*$pattern\* | tail -n 32
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment