Skip to content

Instantly share code, notes, and snippets.

@lerua83
Created November 13, 2013 13:22
Show Gist options
  • Save lerua83/7449012 to your computer and use it in GitHub Desktop.
Save lerua83/7449012 to your computer and use it in GitHub Desktop.
GIT - Get the commits that occured between two dates URL: http://stackoverflow.com/questions/1161609/in-git-how-can-i-get-the-diff-between-all-the-commits-that-occured-between-two How to obtain all the commits that occurred between two dates
git whatchanged --since="2 year ago" --until="1 year ago" [--author="NAME_OF_THE_AUTHOR"]
@magirtopcu
Copy link

git whatchanged --since="2 year ago" --until="1 year ago" --pretty=format: --name-only

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment