> -----Original Message-----
> From: Ross Smith II [mailto:cygwinspam_at_netebb.com]
> Sent: woensdag 30 september 2009 3:02
> To: users_at_subversion.tigris.org
> Subject: config:miscellany:use-commit-times=yes ignored
>
> Why does SVN 1.6.5 (client and server both running on Debian) ignore
> the command:
>
> --config-option config:miscellany:use-commit-times=yes
>
> Here's a synopsis:
>
> host:/tmp# cat ~/.subversion/config
> ...
> [miscellany]
> ...
> ### Set use-commit-times to make checkout/update/switch/revert
> ### put last-committed timestamps on every file touched.
> use-commit-times = yes
> ### Set no-unlock to prevent 'svn commit' from automatically
> ### releasing locks on files.
> ...
>
> host:/tmp# ls -l test
> total 32
> -rw-r--r-- 1 root root 17992 Sep 16 1999 GPL
>
> host:/tmp# svn import -m '' test http://localhost/svn/src/test2
> Adding test/GPL
>
> Committed revision 12.
>
> host:/tmp# svn co http://localhost/svn/src/test2 test2
> A test2/GPL
> Checked out revision 12.
>
> host:/tmp# ls -l test2
> total 32
> -rw-r--r-- 1 root root 17992 Sep 29 17:36 GPL
>
> host:/tmp# svn import --config-option config:miscellany:use-commit-
> times=yes -m '' test http://localhost/svn/src/test3
> Adding test/GPL
>
> Committed revision 13.
>
> host:/tmp# svn commit --config-option config:miscellany:use-commit-
> times=yes http://localhost/svn/src/test3 test3
> A test3/GPL
> Checked out revision 13.
What checkout command did you use here?
I don't think svn commit can do the checkout for you ;)
Bert
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=2401982
To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].
Received on 2009-09-30 12:30:02 CEST