Skip to content

Instantly share code, notes, and snippets.

@rwaldron
Forked from softprops/git_logging.txt
Created April 25, 2012 16:27
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rwaldron/2491077 to your computer and use it in GitHub Desktop.
Save rwaldron/2491077 to your computer and use it in GitHub Desktop.
fancy git log flags
git log --all --pretty=format:"%h %cd %s (%an)" --since='7 days ago'
git log --pretty=format:"%h %ad | %s%d [%an]" --graph --date=short
git log --pretty=format:"%h %ad | %s%d [%an]" --graph --date=short --since='1 day ago'
git log --pretty=format:"%ad, %s%d [%an]" --graph --date=short --since='1 day ago'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment