A command line fuzzy finder
https://github.com/junegunn/fzf
Simplified and community driven man pages with useful examples
Text-based repo browser for Git
https://www.atlassian.com/blog/git/git-tig
https://github.com/jonas/tig
Alt+.
/ Esc+.
--> repeat argument from previous bash command
Reverse chronological local git branches:
alias gbr="git for-each-ref --sort=-committerdate refs/heads --format='%(HEAD)%(color:yellow)%(refname:short)|%(color:bold green)%(committerdate:relative)|%(color:blue)%(subject)|%(color:magenta)%(authorname)%(color:reset)'|column -ts'|'"
Interactive git branch checkout:
alias gcoi="gbr | fzf --ansi | awk '{print \$1;}' | xargs git checkout"