[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Quilt-dev] Re: gendiff command
From: |
Andreas Gruenbacher |
Subject: |
[Quilt-dev] Re: gendiff command |
Date: |
22 Oct 2003 01:38:24 +0200 |
On Wed, 2003-10-22 at 01:07, Peter Braam wrote:
> Looks good.
>
> So if we are at patch <k> and we have modified <k> we still get the diff
> between
>
> tree + <1> -<k>
> and our changed version of that right? I.e. patches further ahead in
> the series are not involved?
Not sure what you mean. This will give you the diff between the original
a.diff and its updated version:
$ quilt push # pushes a.diff
$ quilt snapshot
# edit something
$ quilt refresh
$ quilt diff --snapshot
This would give you some sort of roll-up diff (I don't think this is
very useful in general):
$ quilt push # pushes a.diff
$ quilt snapshot
# edit something
$ quilt refresh
$ quilt push -a # until z.diff
$ quilt diff --snapshot
I haven't tried yet, but this should again give only the changes in a.diff:
$ quilt push # pushes a.diff
$ quilt snapshot
# edit something
$ quilt refresh
$ quilt push -a # until z.diff
$ quilt diff -P a.diff --snapshot
Okay?