[darcs-users] feature request: darcs changes --files to list the unique set of files touched by 'changes'

Mark Stosberg mark at summersault.com
Mon Feb 15 20:46:22 UTC 2010


On Mon, 15 Feb 2010 15:44:34 -0500
Mark Stosberg <mark at summersault.com> wrote:

> 
> > Here's my use case: I'm doing a peer review of a set patches that relate to a
> > certain ticket number. I want to make sure that I review each changed file,
> > so I would use this report as a checklist.
> > 
> > In the past I've accomplished this by using "darcs changes --summary" and then
> > munging the results to a get unique list of files.
> 
> Here's the recipe I used for this today:
> 
>  darcs changes -p 7718 --summary | grep '\./'  | cut -d ' ' -f 6-10 | sort -u

That should have been:

 darcs changes -p 7718 --summary | grep '\./'  | cut -d ' ' -f 6-10 | sort -u

> As an alternative to having this in darcs, I suppose I could keep this in a reusable bash script. 

-- 
http://mark.stosberg.com/





More information about the darcs-users mailing list