Subversion: Can I checkout, modify, and then make it a branch?

SvnBranchSvn Checkout

Svn Problem Overview


I did a checkout from my trunk to a local DIR and made lots of local changes there. Now I don't want to commit it back to the trunk, but I'd rather make a branch from this local version. Is that possible?

Can I just copy the trunk to a branch, and then cd DIR and svn switch to the branch?

UPDATE: Thanks for the answers, it worked! To summarize the steps:

  • cd DIR
  • svn copy . new-branch-URL
  • svn switch new-branch-URL .

(note the dots)

Svn Solutions


Solution 1 - Svn

The SVN Book (http://svnbook.red-bean.com/en/1.6/svn-book.html#svn.branchmerge.using.create) doesn't recommend creating a branch from the local working copy.

> While it's also possible to create a branch by using svn copy to duplicate a directory within the working copy, this technique isn't recommended. It can be quite slow, in fact! Copying a directory on the client side is a linear-time operation, in that it actually has to duplicate every file and subdirectory within that working copy directory on the local disk.

Instead, create the branch first and then use the svn switch command so you can commit your changes. If your working copy is significantly out of date with the trunk then append "@REV" to the source URL where "REV" is the revision of your working copy reported by svn info.

> Copying a directory on the server, however, is a constant-time operation, and it's the way most people create branches.

$ svn copy http://svn.example.com/repos/calc/trunk \
           http://svn.example.com/repos/calc/branches/my-calc-branch \
      -m "Creating a private branch of /calc/trunk."

Solution 2 - Svn

According to its command line help svn copy can copy from a directory to a repository URL. So you should be able to copy your working copy to the branch, e.g.:

svn copy working_directory url_to_branch

Solution 3 - Svn

In my SVN client: TortoiseSVN it is enough to:

  • right click on the top directory I want to branch
  • in "To URL" select the branch directory in your repository
  • in the frame "Create copy in the repository from:" select "Working copy"

done :)

It is just like copying local version to specified repository url.

Solution 4 - Svn

Yes, you can do this by SVN commandline as well as tortoiseSVN.

You have to specify your SVN workingcopy as src and your new branch as destination of the

svn copy <file/path/to/working/copy> <URL/TO/REPOSITORY/BRANCH>

command.

In TortoiseSVN just point into your working copy, choose "Branch/tag" from contextmenu and choose "Working copy" in the section "Create copy in the repository from:"

Note that it is not a good idea (for traceability reasons )to create tags in such a way, but for branches it is perfectly fine.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionFrankView Question on Stackoverflow
Solution 1 - SvnLucasView Answer on Stackoverflow
Solution 2 - SvnwierobView Answer on Stackoverflow
Solution 3 - SvntwkView Answer on Stackoverflow
Solution 4 - SvnPeter ParkerView Answer on Stackoverflow