Skip to content

Instantly share code, notes, and snippets.

@mrmrs
Created July 17, 2015 01:50
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 mrmrs/240a65d7153667e19cf4 to your computer and use it in GitHub Desktop.
Save mrmrs/240a65d7153667e19cf4 to your computer and use it in GitHub Desktop.
Shows files that have not been changed over the last two weeks in a git repo
git diff --name-only --stat @{2.weeks.ago} >> changed.txt && git ls-files >> all.txt && comm -23 all.txt changed.txt >> unchanged.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment