Consider:
git log -n 20 --pretty=oneline
I am telling Git that I need to see only the last 20 commits. I hate to hit Q to get ri
If you want to use --no-pager in an alias, set up your alias this way:
--no-pager
hist = !git --no-pager log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short