Hi, Subversion 1.7.x appears to no longer support commit (or add) of a
file referenced through a symbolic link. Was this change intended or
should it still work like it did with v1.6.x?
Examples for 1.7.x failing and 1.6.x working shown below.
Thanks,
- Mark
### 1.7.5 ci though link fails ###
> svn status -u
M 6134 a/c.txt
O 6133 test.e
O 6133 spice_bitgen
Status against revision: 6134
> ls -ald a b
drwxr-sr-x 2 moem1 CRM-cadgrp-GS 4096 Jun 11 14:16 a/
lrwxrwxrwx 1 moem1 CRM-cadgrp-GS 1 Jun 11 14:16 b -> a/
> svn ci -m testing b/c.txt
svn: E200009: Commit failed (details follow):
svn: E200009: '/temp/playground_trunk/bin/b/c.txt' is not under version control
Exit 1
> svn ci -m testing a/c.txt
Sending a/c.txt
Transmitting file data .
Committed revision 6135.
>
### 1.6.17 ci through link works ###
> svn status -u
M 6135 a/c.txt
O 6135 test.e
O 6135 spice_bitgen
Status against revision: 6135
> ls -ald a b
drwxr-sr-x 3 moem1 CRM-cadgrp-GS 4096 Jun 11 14:17 a/
lrwxrwxrwx 1 moem1 CRM-cadgrp-GS 1 Jun 11 14:17 b -> a/
> svn ci -m testing b/c.txt
Sending b/c.txt
Transmitting file data .
Committed revision 6137.
>
Received on 2012-06-12 16:50:50 CEST