Here is a complete example:
Code:
svnadmin create /tmp/repo
svn mkdir -mm --parents http://localhost:8888/tmp/repo/A/B
svnmucc -mm propset svn:externals '/tmp/repo2/A/B/f f' http://localhost:8888/tmp/repo/A/B
svnadmin create /tmp/repo2
svn import -mm /tmp/repo2/format http://localhost:8888/tmp/repo2/A/B/f
svn co http://localhost:8888/tmp/repo wc
The checkout gives me the "Unsupported external" warning using 1.6 and 1.7 clients.
Note I used the recommended form for externals these days: 'URL LOCALPATH' rather than 'LOCALPATH URL'. I also used a server-relative URL to make it shorter.
Bookmarks