I need to revert local changes for deployments. (I'd used svn revert for this in old skool SVN days.)
And im using git reset --hard HEAD for this. (Also git fetch and git merge origin/$branch --no-ff for syncronizing with upstream branch.)
But some articles points git checkout -f for reverting changes.
What's key differences between this commands. Which way is the recommended?