DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Restore Deleted Files Using Git
To show deleted files use the command:
git ls-files -d
To restore the deleted files use:
git ls-files -d | xargs git checkout --
<a href="http://lists.freedesktop.org/archives/xorg/2006-October/018572.html">Reference</a>





