Subversion question

Marius Gedminas marius at pov.lt
Fri Jun 27 13:48:40 UTC 2008


On Fri, Jun 27, 2008 at 01:54:37PM +0200, Alain Muls wrote:
> I have 2 subversion repositories, say svn1 and svn2.
> 
> In svn1 there is a subdir common that is versioned in svn1 repos. I want 
> it also to be versioned in svn2 using the svn:externals property. I 
> tried (among others):
> 
> svn propset svn:externals "common svn://myname@path/to/repos/svn1/common"

Subversion properties don't live in the air, they live on specific files
and directories.

You're trying to set the svn:externals property to a specific value, but
you're not telling subversion where to stick it.

Try

  svn propset svn:externals "common svn://myname@path/to/repos/svn1/common" .

(note the trailing dot).

Personally I prefer

  svn propedit svn:externals .

and then I can edit the property value in a text editor.

Regards,
Marius Gedminas
-- 
Thus spake the master programmer:
        "After three days without programming, life becomes meaningless."
                -- Geoffrey James, "The Tao of Programming"
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 189 bytes
Desc: Digital signature
URL: <https://lists.ubuntu.com/archives/ubuntu-users/attachments/20080627/2890bf50/attachment.sig>


More information about the ubuntu-users mailing list