Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to propedit svn externals?

Tags:

svn

I feel as if the answer to the question is stupidly simple but I can't seem to find anything out there and I'm not yet overly experienced with SVN.

This is the propset command I used to make it:

svn propset svn:externals "wp-content http://example.com" .

I know there is a propedit but I'm not sure how it is used in conjunction with svn externals. Is it possible to edit the location to lets say http://example.com/branches/example?

Thank you very much for any advice.

like image 573
adamj Avatar asked Sep 08 '14 02:09

adamj


People also ask

How to add svn externals?

Simply right drag the file or folder from one working copy to where you want those to be included as externals. A context menu appears when you release the mouse button: SVN Add as externals here if you click on that context menu entry, the svn:externals property is automatically added.


1 Answers

propedit will open a external editor (vim, emacs, etc) to edit your svn properties. I've been using it for svn:externals with emacs because it is a multi lines property.

svn pe svn:externals . --editor-cmd emacs 
like image 154
LAL Avatar answered Sep 25 '22 15:09

LAL