christycodes
Monday, April 4, 2016
git log: Print more info, including merged patches
Put this in your .bashrc
git(){
if [[ $@ == "log" ]]; then
command git log --pretty=fuller --simplify-merges --full-history
else
command git "$@"
fi
}
Thanks for the tip, http://superuser.com/a/105389
Newer Posts
Older Posts
Home
Subscribe to:
Posts (Atom)