On 07/10/11 14:27, Victor Vasiliev wrote:
I also use two working copies (one read-only for development and one for commiting). This is mostly due to lack of svn stash and local branches (I have at least two large patches on my local copy I'm forced to manually unmerge by editing svn diffs).
You could git init your existing repository to have a git stash on top of your existing svn working copie. Whenever you want to svn update: stash your changes with git, svn update, git commit, unstash and merge :)