I have a slight problem with SVN:

I added some new folders and files to my working copy and wanted to commit those new elements to a developer branch instead of to the real location implied by the folder structure.

With TortoiseSVN I did a "Branch/Tag..." and specified the option "Working copy" in the group "Create copy in the repository from:". The elements got committed to the branch location, but unfortunately, I cannot switch my working copy to this new branch because a commit to the real location hasn't been done yet. My intention was to do further commits to the developer branch and to finally merge the branch with the trunk.

Is there a way around this problem?

link|improve this question

71% accept rate
feedback

1 Answer

One of possible solutions is:

  1. save your work to a patch file: svn diff > my-work.patch
  2. checkout new branch at some other place
  3. apply your work to that branch using patch -p0 -i my-work.patch
  4. commit work
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.