Git recover deleted files
# find commits with file deletions
git log --diff-filter=D --summary --name-only
# find deleted file full path
git log --diff-filter=D --summary --name-only | grep Step1.ascx.en.resx
# find commit where file was deleted by its full path
git log --all --full-history --no-merges -- Rabota2.WebUI/Controls/Service/App_LocalResources/SocialNetworkLogin.ascx.en.resx
# recover deleted file
git checkout 4a23be713e084b53149d2ba6bac441b26e20bdff~1 Rabota2.WebUI/Controls/Service/App_LocalResources/SocialNetworkLogin.ascx.en.resx