Skip to content

Instantly share code, notes, and snippets.

@aalmeida00
Last active September 17, 2024 23:03
Show Gist options
  • Save aalmeida00/b87181f76785b2413d06e56dc6c499db to your computer and use it in GitHub Desktop.
Save aalmeida00/b87181f76785b2413d06e56dc6c499db to your computer and use it in GitHub Desktop.
Git aliases to use daily
  1. Git log

git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit"

image

  1. Git last branch

git config --global alias.lb '!git branch --sort=-committerdate --format="%(HEAD)%(color:yellow)%(re fname:short)|%(color:bold green)%(committerdate:relative)|%(color:blue)%(subject)|%(color:magenta)%(authorname)%(color:reset)" --color=always | co lumn -t -s "|"'

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment