You can check what you changed with
git status
If you didnt commit yet you can just do
git stash or git reset --hard HEAD
If you did commit but want to keep your changes You can use the command below with x as number of commits you want to reset
git reset --mixed HEAD~x
If you did commit and you want to get rid of your changes do the command above with --hard instead of --mixed
However if you commited & want to get tid of your changes and pushed to an arbitary repository (pushed your changes to another server) dont forget to force push the repository with
git push -f origin branch
To just undo one file use
git checkout filename