Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@podhmo
Created February 18, 2021 21:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save podhmo/3f345afd92b66a246543828799d921de to your computer and use it in GitHub Desktop.
Save podhmo/3f345afd92b66a246543828799d921de to your computer and use it in GitHub Desktop.
_gitbranches() {
git branch $@ --format '%(HEAD) %(refname:short)%09%(committername)%09%(committerdate:relative)'
}
gitbranches() {
_gitbranches $@ | awk -F'\t' '{printf "%-40s\t%-30s\t%s\n", $1, $2, $3 }'
}
00:
. bashrc; gitbranches
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment