I know git stores information of when files get deleted and I am able to check individual commits to see which files have been removed but is there a command that would generate a list of every deleted file across a repositories lifespan?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
See Restore a deleted file in a Git repo If you don't want all the information about which commit they were removed in, you can just add a
|
|||
|
|
|
This does what you want, I think:
... which I've just taken more-or-less directly from this other answer. |
|||
|
|
if you then want to remove them (in case you deleted them not using "git rm") pipe that result to xargs git rm
|
|||||
|
|
And if you want to somehow constrain the results here's a nice one:
You'll get all files deleted from |
|||
|
|