On Fri, Nov 19, 2004 at 09:07:58PM -0800, Garrett Rooney wrote:
> Stas Bekman wrote:
> >I find the fact that svn dumps its file copies into the same tree with 
> >the source files pretty annoying, since it's no longer possible to grep 
> >files, since you get dups, and do other things. Is there a way to 
> >configure svn to store its stuff elsewhere?
> >
> 
> Nope, but you can use something like the wcgrep script to avoid the 
> problem.  You can grab it from the svn source tree in 
> contrib/client-side or directly from the repos at
> 
> http://svn.collab.net/repos/svn/trunk/contrib/client-side/wcgrep

I use bash aliases for recursive greps which ignore the .svn/text-base
files by virtue of the .svn-base extension:

alias rgrepc='grep --include \*.[ch] -r --'
alias rgrepm='grep --include \*.pm -r --'

(requires GNU grep, of course)

joe

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to