Re: [fossil-users] How to limit "fossil diff" output to just names of the changed files?

2012-02-02 Thread Matt Welland
On Thu, Feb 2, 2012 at 1:32 PM, Heinrich Huss < heinrich.h...@psh-consulting.de> wrote: > Why not using 'fossil change'? > Or am I missing the point? > As far as I can tell fossil changes doesn't take --to and --from > Regards > Hein > > Am 02.02.2012 18:35, schrieb Leo Razoumov: > > 2012/2/2

Re: [fossil-users] How to limit "fossil diff" output to just names of the changed files?

2012-02-02 Thread Bill Burdick
He wants diffs between two versions, not between the last commit and the current files. Bill On Thu, Feb 2, 2012 at 2:32 PM, Heinrich Huss < heinrich.h...@psh-consulting.de> wrote: > Why not using 'fossil change'? > Or am I missing the point? > > Regards > Hein > > Am 02.02.2012 18:35, schrieb

Re: [fossil-users] How to limit "fossil diff" output to just names of the changed files?

2012-02-02 Thread Heinrich Huss
Why not using 'fossil change'? Or am I missing the point? Regards Hein Am 02.02.2012 18:35, schrieb Leo Razoumov: 2012/2/2 Lluís Batlle i Rossell: What if you keep on with the fossil internal diff command, and run: $ fossil diff --from xxx --to yyy | grep Index That's what I'm using now tha

Re: [fossil-users] How to limit "fossil diff" output to just names of the changed files?

2012-02-02 Thread Leo Razoumov
2012/2/2 Lluís Batlle i Rossell : > > What if you keep on with the fossil internal diff command, and run: > $ fossil diff --from xxx --to yyy   | grep Index > > That's what I'm using now that I needed this feature. > As a poor man's solution, I am using $ fossil diff -i --from xx --to yy | egrep

Re: [fossil-users] How to limit "fossil diff" output to just names of the changed files?

2012-02-02 Thread Lluís Batlle i Rossell
On Wed, Feb 01, 2012 at 05:22:53AM -0500, Leo Razoumov wrote: > $ fossil clone http://www.fossil-scm.org/ fossil.fos > $ fossil set diff-command 'diff $DIFFPARAMS' -R fossil.fos > $ DIFFPARAMS='-q' fossil diff --from version-1.20 --to version-1.21 -R > fossil.fos > produces > Files /var/tmp/TOVfAuD

Re: [fossil-users] How to limit "fossil diff" output to just names of the changed files?

2012-02-01 Thread Leo Razoumov
On Tue, Jan 31, 2012 at 21:30, Matt Welland wrote: > > fossil could do with a little more power on the command line. Passing > remaining parameters to diff would be useful. Here is a crude work around > for you: > > $ fossil set diff-command 'diff $DIFFPARAMS' > $ DIFFPARAMS='-q' fossil diff -r 7a

Re: [fossil-users] How to limit "fossil diff" output to just names of the changed files?

2012-01-31 Thread Leo Razoumov
On Tue, Jan 31, 2012 at 21:30, Matt Welland wrote: > fossil could do with a little more power on the command line. Passing > remaining parameters to diff would be useful. Here is a crude work around > for you: > > $ fossil set diff-command 'diff $DIFFPARAMS' > $ DIFFPARAMS='-q' fossil diff -r 7ad3

Re: [fossil-users] How to limit "fossil diff" output to just names of the changed files?

2012-01-31 Thread Russ Paielli
On Tue, Jan 31, 2012 at 6:30 PM, Matt Welland wrote: > > > On Tue, Jan 31, 2012 at 11:41 AM, Leo Razoumov wrote: > >> Hi All, >> I am a new Fossil SCM user and it is my first posting to this mailing >> list. Please, forgive me if what I am asking has been discussed and >> answered here before. >>

Re: [fossil-users] How to limit "fossil diff" output to just names of the changed files?

2012-01-31 Thread Matt Welland
On Tue, Jan 31, 2012 at 11:41 AM, Leo Razoumov wrote: > Hi All, > I am a new Fossil SCM user and it is my first posting to this mailing > list. Please, forgive me if what I am asking has been discussed and > answered here before. > > When I do > sh$ fossil diff --from ver1 --to ver2 > I get t

Re: [fossil-users] How to limit "fossil diff" output to just names of the changed files?

2012-01-31 Thread Leo Razoumov
2012/1/31 Jacek Cała : > Try 'fossil changes' > >  Cheers, >  Jacek > Nope, does not seem to work. According to "fossil help changes" "fossil changes" list differences between the changed files in the working directory and the current checkout. I, on the other hand, am interested in changes betwee

Re: [fossil-users] How to limit "fossil diff" output to just names of the changed files?

2012-01-31 Thread Lluís Batlle i Rossell
On Tue, Jan 31, 2012 at 06:46:14PM +, Jacek Cała wrote: > Try 'fossil changes' Well, that will not tell the changes between versions. Maybe it could be written to tell that, though, with options like fossil diff. > 2012/1/31 Leo Razoumov : > > Hi All, > > I am a new Fossil SCM user and it is

Re: [fossil-users] How to limit "fossil diff" output to just names of the changed files?

2012-01-31 Thread Jacek Cała
Try 'fossil changes' Cheers, Jacek 2012/1/31 Leo Razoumov : > Hi All, > I am a new Fossil SCM user and it is my first posting to this mailing > list. Please, forgive me if what I am asking has been discussed and > answered here before. > > When I do >     sh$ fossil diff --from ver1 --to ver2

[fossil-users] How to limit "fossil diff" output to just names of the changed files?

2012-01-31 Thread Leo Razoumov
Hi All, I am a new Fossil SCM user and it is my first posting to this mailing list. Please, forgive me if what I am asking has been discussed and answered here before. When I do sh$ fossil diff --from ver1 --to ver2 I get the entire contextual diff of the changes between the said commits. Ho