Add this alias to your terminal's rc or profile file. For most users, it is .bashrc
or .bash_profile
in the home directory. Fire up a new terminal tab, cd
to any git repository and try out the command gitrecent
.
alias gitrecent="git for-each-ref --sort=committerdate refs/heads/ --format='%(HEAD) %(color:yellow)%(refname:short)%(color:reset) - %(color:red)%(objectname:short)%(color:reset) - %(contents:subject) - %(authorname) (%(color:green)%(committerdate:relative)%(color:reset))'"
Source: This stackoverflow answer
Top comments (1)
You could also do a
to switch to your most recently used branch