I have an external Subversion repo accessed from two separate machines, one machine is using svn v1.7.9 and the other is using v1.8.3.
From v1.7.9 I can use the svn ls
command with the relative (^) symbol and it works as expected (from the root of the repo)...
# svn ls ^/tags
v1-0-0/
v1-1-0/
v1-2-0/
etc
From v1.8.3 I try the same command and get the following...
# svn ls ^/tags
zsh: no matches found: ^/tags
If I run svn info
from v1.8.3 I can see the Relative URL: ^/trunk
output as expected (added in v1.8), but it appears I can't go above that level (to the root) using the relative (^) symbol, for example...
# svn ls ^/
[returns a list of all files/directories in trunk]
This means that almost every command (switch/copy/merge etc) fails when using the relative symbol. Any ideas how I can fix this?