1

Part of a repository is going to move to it's own repository on a new server, and this may break externals that have been set up.

How can I find a list of all paths that have externals set?

1 Answer 1

1

Make an executable script 'find_externals.sh'

#!/bin/bash repository='/path/to/repo' echo find paths that have externals set while read fullpath; do result=`svnlook proplist "$repository" "${fullpath}" -v` if [[ "$result" == *svn:ext* ]] ; then echo;echo "Path: '$fullpath'" echo $result fi done 

Call it like this

svnlook tree /path/to/repo --full-paths | ./find_externals.sh 
Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.