here is the log from the whole procedure:
#create the repository
redeye@choroidea tmp $ mkdir /tmp/test
redeye@choroidea tmp $ svnadmin create /tmp/test
#create the directory structure to import
redeye@choroidea tmp $ mkdir projects
redeye@choroidea tmp $ mkdir projects/trunk
redeye@choroidea tmp $ mkdir projects/tags
redeye@choroidea tmp $ mkdir projects/branches
#import the initial directory structure
redeye@choroidea test $ cd ../projects/
redeye_at_choroidea projects $ svn import file:///tmp/test
Adding trunk
Adding branches
Adding tags
Committed revision 1.
#create a working copy
redeye@choroidea tmp $ mkdir /tmp/testDev
redeye@choroidea projects $ cd /tmp/testDev/
redeye_at_choroidea testDev $ svn co file:///tmp/test
A test/trunk
A test/branches
A test/tags
Checked out revision 1.
#create a file
redeye@choroidea testDev $ cd /tmp/testDev/test/trunk/
redeye@choroidea trunk $ emacs test.C
redeye@choroidea trunk $ cat test.C
/*$Id$*/
#add the file
redeye@choroidea trunk $ svn add test.C
A test.C
#commit the changes to the repository
redeye@choroidea trunk $ svn commit test.C
Adding test.C
Transmitting file data .
Committed revision 2.
#look for the properties
redeye@choroidea trunk $ svn proplist *
Properties on 'test.C':
svn:eol-style
#the svn:eol-style property is set but not the svn:keywords??
#just for completeness the content of my config file
redeye@choroidea trunk $ cat ~/.subversion/config
[miscellany]
enable-auto-props = yes
[auto-props]
* = svn:keywords=Id
* = svn:eol-style=native
[helpers]
editor-cmd = emacs
I hope this is of any help... cheers /jk
Jens Kowal, Ph.D.
MEM Research Center for Orthopaedic Surgery
Institute for Surgical Technology and Biomechanics
University of Bern
Stauffacherstr. 78
CH-3014 Bern, Switzerland
Tel: +41 31 631 5947
Fax: +41 31 632 5960
Email: jk@MEMcenter.unibe.ch
http://www.MEMcenter.unibe.ch
Ben Collins-Sussman <sussman@collab.net>
06/29/2004 00:53
To
Jens.Kowal@memcenter.unibe.ch
cc
users@subversion.tigris.org
Subject
Re: Question regarding auto-props...
On Mon, 2004-06-28 at 17:46, Jens.Kowal@MEMcenter.unibe.ch wrote:
> I've tried two different versions:
> - 0.27 originated from a SuSE 9.0 distribution on a PC
This is positively ancient. I don't think the 'auto-props' feature even
exists in this version of the svn client.
> - 1.0.4 from an ebuild from Gentoo running under Linux on a Sparc
Show us a transcript of this client running 'svn add' and failing to
auto-create the property. It should work here, for sure.
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Tue Jun 29 09:38:24 2004