git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jeff King <peff@peff.net>
To: Phil Lawrence <prlawrence@gmail.com>
Cc: git <git@vger.kernel.org>
Subject: Re: interactive rebase of binary files?
Date: Sat, 1 Aug 2009 01:15:59 -0400	[thread overview]
Message-ID: <20090801051559.GA26580@sigill.intra.peff.net> (raw)
In-Reply-To: <530ac78e0907312058i1fbc3685qad060d5c01f5b8ac@mail.gmail.com>

On Fri, Jul 31, 2009 at 10:58:58PM -0500, Phil Lawrence wrote:

> However, there is a problem with binary files.  For example, if I
> specify "edit" in the git-rebase-todo list for one of the binary file
> commits, only one version of the binary file is presented to me in the
> working copy.  If it were a text file, I'd expect to see the standard
> conflict stuff within the one file.  I'd edit and save that one file.
> However, in the case of binary files, should I not see binary_file.a
> and binary_file.b both in the working copy, so that I can compare and
> pick a winner (or edit one of them into a winner)?
> 
> More likely, my expectations are due to my ignorance, and someone can
> point me to the "git" way of doing this.  Please?

During a merge conflict, the index stages are populated with the various
versions of the file you are looking for. The simplest way to access
them is probably:

  $ git show :1:$filename ;# the common ancestor
  $ git show :2:$filename ;# upstream version
  $ git show :3:$filename ;# version from rebasing branch

It's a bit tricky to find in the documentation, though. You have to
first realize that git-rebase is basically trying to do a merge behind
the scenes, and then find the "how to resolve conflicts" section of "git
help merge". And then realize that the usual "ours" and "theirs" stages
of 2 and 3 are reversed, since you are really merging your work onto the
upstream branch. So probably there is room to improve the documentation,
but I'm not sure of the best way.

-Peff

      reply	other threads:[~2009-08-01  5:16 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-08-01  3:58 interactive rebase of binary files? Phil Lawrence
2009-08-01  5:15 ` Jeff King [this message]

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=20090801051559.GA26580@sigill.intra.peff.net \
    --to=peff@peff.net \
    --cc=git@vger.kernel.org \
    --cc=prlawrence@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).