set up a local SVN with svn:external branch for merging (from scratch)

761 Views Asked by At

I wonder if it is possible to set up an SVN subversion system (btw, i'm on Ubuntu 11.10) for particular folder with two different sources and track changes simultaneously?

The situation is the following:

  1. There is an Open Source project which is regularly updated (from svn://...). I use that as a basis to add some features I need. I don't have a right to submit my changes or do branching or anything else like that at the developers svn.

  2. Modifying my code I keep track of what I modified via local svn (file:///usr/...)

What I would like to do is from time to time merge my version with official updates but still keep my personal local svn. How do I set it up?

Or would it be easier to have SVN (for official subversion) + some other system like Git?

p/s/ I work on the code myself only in Eclipse with Subclipse plug-in.

UPDATE1:

going through the SVN book, that's how I should probably make a branch in my case:

Initial import:

svn import /path/to/3rd-party-code \
          file:///usr/.../vendor/name/current \
          -m "importing initial 1.0 vendor drop"

Tag it:

svn copy file:///usr/.../vendor/name/current  \
         file:///usr/.../vendor/name/1.0      \
         -m "tagging name-1.0"

Bring to trunk:

svn copy file:///usr/.../vendor/name/1.0  \
         file:///usr/.../trunk/        \
       -m "bringing name-1.0 into the trunk"

And then checkout from trunk and start modification. So, how things change with "externals" ?

Update 2:

Is this how everything should be don from scratch:

svnadmin create /usr/.../svnrepo

svn import svn://path/to/3rd-party-code \
     file:///usr/.../svnrepo/name/branch/official \
     -m "importing initial XXXX rev. vendor drop"

svn copy file:///usr/.../svnrepo/name/branch/official  \
         file:///usr/.../svnrepo/name/trunk      \
         -m "bringing rev XXXX into the trunk"

svn propedit svn:externals svn://path/to/3rd-party-code name/branch/official

Merging:

svn merge -r XXXX:HEAD name/branch/official
svn ci -m "Merged YYYY official revision to trunk"

UPDATE 3:

svnadmin create /usr/.../svnrepo

svn mkdir -m "Create folders" \
          file:///usr/../svnrepo/name/branches \
          file:///usr/../svnrepo/name/branches/official \
          file:///usr/../svnrepo/name/trunk

Externals:

svn propedit svn:externals file:///usr/.../svnrepo/name/branches/official

(input "svn://path/to/3rd-party-code")

svn copy file:///usr/.../svnrepo/name/branches/official  \
         file:///usr/.../svnrepo/name/trunk      \
         -m "bringing rev XXXX into the trunk"    

Now, the problem is when I "co" trunk, I get the following structure:

official/svn:externals/folder1/file1

Which is something I don't want for sure :)

Merging:

svn merge name/branches/official
svn ci -m "Merged YYYY official revision to trunk"
2

There are 2 best solutions below

10
On BEST ANSWER

folder with two different sources and track changes simultaneously?

It's not doable with SVN - WC have one path for one repo

But you task can be covered with svn:externals and "Vendor Branches" strategy:

  • separate branch for external project defined as svn:externals (without using PEG-revision in URL)
  • your development happens in trunk
  • branch (after updates with new revisions) periodically merged to trunk
1
On

Your situation is described in the SVN book in the chapter about vendor branches. If the open source project also uses an SVN repository you can in addition take advantage of the externals functionality.