Skip to content

Instantly share code, notes, and snippets.

@nielk
Created October 28, 2013 10:21
Show Gist options
  • Save nielk/7194486 to your computer and use it in GitHub Desktop.
Save nielk/7194486 to your computer and use it in GitHub Desktop.
git log in one line
git log --pretty=oneline
# other options:
git log --pretty=oneline --max-count=2
git log --pretty=oneline --since='5 minutes ago'
git log --pretty=oneline --until='5 minutes ago'
git log --pretty=oneline --author=<your name>
git log --pretty=oneline --all
git log --all --pretty=format:'%h %cd %s (%an)' --since='7 days ago'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment