I have a git repository and the scenario is like this.
Past: rev 102
I made changes and pushed it to the repository, so
Present: rev 103
Now, i want to undo all the changes and go back to rev 102 so that when users checkout/update the repository, it will be the one same as rev 102. I tried revert but the rev 103 still remains in the remote repository and thus upon checkout or update it is rev 103 that gets checked out. Thanks.