Possible Duplicates:
How do I push amended commit to the remote git repo?
Undoing a git push
Hi,
I've deleted some commits from my master branch by using
git reset --hard SHA_VALUE
I have, however a remote version of the repository on github, and whenever I git push
things, I get an error message, that I should merge the changes contained in the remote repository (which I do not want to).
So my question is, what is the remote equivalent to the git reset
command?
thx