Restore a deleted folder in a Git repo
I have deleted all the contents inside a folder and the folder is empty. I still had a copy in my remote repo. But when I did a git pull it didn't put back the deleted files isn't is supposed to do that? So I did some research and saw that you can revert a file by doing git checkout <revision> -- <name of file> But that only works on files. How can I retrieve all the files inside the directory? Nick Volynkin Everything you can do with a file, you can do with a folder too. Also note Find and restore a deleted file in a Git repository Files are deleted from working tree but not committed yet: If