Skip to content

Instantly share code, notes, and snippets.

@bansalakhil
Created July 30, 2012 06:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bansalakhil/3205304 to your computer and use it in GitHub Desktop.
Save bansalakhil/3205304 to your computer and use it in GitHub Desktop.
Git log searching
Only show commit history earlier than 5 days ago:
git log --since=5.day.ago
Only show commit history older than 5 days ago:
git log --until=5.day.ago
Only show commit history between a timeframe:
git log --since=7.days.ago --until=6.day.ago
git log --since=2012-07-23 --until=2012-07-25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment