I'm using subgit to sync my git and SVN repos. I have updated a misleading log message in SVN and I would like that reflected in git. I was wondering if something like this would do the trick:
subgit uninstall
(on the server to stop the synchronization)git checkout master
(on my local)git reset --hard HEAD~5
git push -f
(to reset the origin git repo back to previous revision)subgit install
(to re-sync the SVN changes to git)
Am I on the right lines?