Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to find all entries in SVN repo with an external to a given URL [duplicate]

Tags:

svn

Possible Duplicate:
List all svn:externals recursively?

I need to move the location of a component that is referenced by many projects with an svn:external.

How can I easily find all locations that have an svn:external to this URI?

like image 832
Andrew Bullock Avatar asked Sep 16 '10 09:09

Andrew Bullock


1 Answers

 svn propget svn:externals http://path/to/repos -R

lists all externals, its not filtered, suppose i could grep it if i was on a decent OS.

like image 141
Andrew Bullock Avatar answered Oct 13 '22 00:10

Andrew Bullock