tags:

views:

26

answers:

1

I've made one svn:external in my repository. Everything works fine, exect the ouput of the "svn status". In the output there is lot of information I don't need:

$ svn st
X      lib

Performing status on external item at 'lib'

I can run ‘svn st --ignore-externals -q‘ and I can place this line in a small script, but maybe there is better solution how I can see status of my working copy without seeing info about externals?

+1  A: 

That seems to be the proper way to ignore externals to appear in your svn status output.

Reference:

http://svnbook.red-bean.com/en/1.4/svn.ref.svn.html

ryanprayogo