While programming software stored in a Subversion repo, I often modify some files, then notice that I\'d like to do some preparatory change for my main work. E.g. while impl
I don't know of an easy way to do that with just svn. Honestly, I'd advise using git-svn
to make a git repo that acts as an svn working copy, and just using git stash
with that. Just replace git pull
with git svn rebase
and git push
with git svn dcommit
and you can actually keep 90% of your git workflow and still be talking to an svn server.