git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jeff King <peff@peff.net>
To: Steven <redalert.commander@gmail.com>
Cc: git@vger.kernel.org
Subject: Re: git revert ignore whitespace
Date: Fri, 10 Sep 2010 11:24:34 -0400	[thread overview]
Message-ID: <20100910152434.GA8891@sigill.intra.peff.net> (raw)
In-Reply-To: <15732.91.183.48.98.1284130451.squirrel@stevenleeuw.kwik.to>

On Fri, Sep 10, 2010 at 04:54:11PM +0200, Steven wrote:

> > You could just manually do the revert. Something like:
> >
> >   git diff-tree -p $commit | git apply --ignore-whitespace
> >   git commit -m "revert '`git log -1 --format=%s $commit`'"
> 
> I had to modify the commands a bit to get it to work.
> Here they are:
> git diff-tree -p <commithash> | git apply --reverse --ignore-whitespace -C0
> git add <file(s)>
> git commit -m "revert '`git log -1 --format=%s $commit`'"
>
> The --reverse is necessary to revert a patch, I needed the -C0 parameter
> as well because the line above changed as well.

Oops. Yeah, obviously I just typed that straight into the email and did
not actually run it. :) The --reverse is definitely necessary. Using -C0
can help, but it can also be dangerous, as context lines help apply make
sure it's in the right spot.

> This was a fairly simple example, but I imagine it won't work at all with
> a larger history, especially with more changes in the relevant sections
> and additions/deletions. I believe git revert does take these into
> account?

Yeah, the question is really whether the reverse diff from the reverted
commit applies to your current tree. Nearby changes obviously make that
harder.

Once upon a time revert itself was implemented like this (see 045f82c,
which introduced revert and uses "diff | apply"). These days it is only
a little more complex. It uses the 3-way merge machinery, which should
do better with finding minimal conflicts when the context has changed,
and will do rename detection (and when the patch doesn't apply, will
actually put in conflict markers, which is a nice place to start with
resolving it).

Revert is written in C these days, but you can see the shell script
version using git-merge-recursive in contrib/examples/git-revert.sh.
However, I don't think there is an easy way to ask merge-recursive to
ignore whitespace changes.

-Peff

  reply	other threads:[~2010-09-10 15:24 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-09-10  7:57 git revert ignore whitespace Steven
2010-09-10 14:21 ` Jeff King
2010-09-10 14:54   ` Steven
2010-09-10 15:24     ` Jeff King [this message]
2010-09-10 16:34       ` Junio C Hamano

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20100910152434.GA8891@sigill.intra.peff.net \
    --to=peff@peff.net \
    --cc=git@vger.kernel.org \
    --cc=redalert.commander@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).