With the sequence of actions you mention, if you had some extra modifications on your master branch during the 2 days, you have deleted them from your master branch.
Fortunately, if this was the case, you can still find your commits from your local repo :
run git reflog master
you should see an output looking like :
110f738 (HEAD -> master, bare/master) master@{0}: reset: moving to origin/master
224e68f master@{1}: commit: **commit message** # <- this commit
1a58e62 master@{2}: commit: **commit message**
...
You can use the hash of the commit appearing right before the reset: moving to origin/master
line
running for example :
# assuming you are on your local 'master' branch :
# re-set master to its previous state :
git reset 224e68f
# push it to your server :
git push origin master