[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

'svn status' bite-size task?

From: Justin Erenkrantz <jerenkrantz_at_apache.org>
Date: 2002-11-06 07:30:59 CET

Here's an annoyance that I think we can work around, and I'll leave
it as a bite-sized task for someone who wants to get familiar with
Subversion and learn how it works a bit and get a patch in. I'll
volunteer to review and commit any patches that implement this.

If I want to know what files are conflicted in my working-copy, I
need to do:

% svn status | grep ^C
grep: .svn: Is a directory
....

Oops, that ^C got caught by my shell. The correct thing to do, of
course, is:

% svn status | grep '^C'
C ...file...

Adding the ''s is a real annoyance and I think we can help out.

Therefore, I'd like to see:

svn status --conflicted
svn status --missing
svn status --unversioned
svn status --modified

and any other long options as desired.

Anyone feel lucky? -- justin

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed Nov 6 07:32:16 2002

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.