2

If I do

svn propset svn:externals 'https://url.to.remote.branch' .

svn: Error parsing svn:externals property on '.' : 'https://url.to.remote.branch'

If I do

svn propedit svn:externals 'https://url.to.remote.branch' .

::vi - enter message::

svn: Error parsing svn:externals property on 'https://url.to.remote.branch': 'message'

Any ideas? I haven't been able to google/find the instance of this problem happening on '.'

FishStix
  • 4,994
  • 9
  • 38
  • 53
  • 1
    svn propset svn:externals 'branch-dir https://url.to.remote.branch' . – FishStix Apr 30 '12 at 18:34
  • 2
    You should submit that as an answer to this question and accept it so that it's more obvious that it's been answered (correctly) -- and so this isn't still an open question. – paul Aug 03 '12 at 13:35

1 Answers1

1

svn propset svn:externals 'branch-dir url.to.remote.branch';

FishStix
  • 4,994
  • 9
  • 38
  • 53