Created
November 15, 2017 19:27
-
-
Save kostyrev/08433aa4130c14f3e2351a87a26b0938 to your computer and use it in GitHub Desktop.
list deleted files from .git
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 rev-list --all --objects | sed -n $(git rev-list --objects --all | cut -f1 -d' ' | git cat-file --batch-check | grep blob | sort -n -k 3 | tail -n1 | while read hash type size; do echo -n "-e s/$hash/$size/p "; done) | sort -n -k1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment