Created
July 17, 2015 01:50
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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