We have a problem with git. We made some local changes and tried to commit and push. It got committed but not pushed because of some conflicts. so we took backup of conflicted files but missed to take backup of un-conflicted files which are committed. Then to resolve conflicts easily I reset it with:
git fetch origin
git reset --hard origin/master
with this the files were replaced with those in server.
My question is is there any way to get back the replaced files?