I have a dev branch I'm working on and want to commit it. However through an unfortunate series of events which I won't get into, my git svn thinks its already up to date and there is nothing to commit.
Essentially right now I want to clobber the remote contents of my branch with the local version of my branch. Similar to a git push --force
, except with git svn. Something like git svn dcommit --force
.
I realize there are other ways such as checking out another copy and copy/pasting the repo's contents. But I'm hoping for a simple "forcing" solution like the one that exists with pure git.