On Fri, 22 Jul 2011 15:01:09 -0500
Steve Cohen wrote:
> Is there an easy way to restrict svn diff operation to files of a
> certain extension (say .h)? A quick glance at the manual suggested
> nothing to me.
>
A hacky way would be to use something like:
$ ack -g '\.h$' | xargs -d '\n' svn
On Fri, Jul 22, 2011 at 4:01 PM, Steve Cohen wrote:
> Is there an easy way to restrict svn diff operation to files of a certain
> extension (say .h)? A quick glance at the manual suggested nothing to me.
Nope: you'd have to parse the output of a "list" command or a local
"find", which shouldn't
Is there an easy way to restrict svn diff operation to files of a
certain extension (say .h)? A quick glance at the manual suggested
nothing to me.