From: Jeff King <peff@peff.net>
To: Junio C Hamano <gitster@pobox.com>
Cc: git@vger.kernel.org, Theodore Ts'o <tytso@mit.edu>
Subject: Re: [RFC] git-mergetool: show original branch names when possible
Date: Mon, 20 Aug 2007 04:52:47 -0400 [thread overview]
Message-ID: <20070820085246.GA23764@coredump.intra.peff.net> (raw)
In-Reply-To: <7vabsmtxsg.fsf@gitster.siamese.dyndns.org>
On Mon, Aug 20, 2007 at 01:28:31AM -0700, Junio C Hamano wrote:
> I do not think of anything that would barf offhand (we already
> do that in FETCH_HEAD), but this would definitely be carefully
> audited.
I didn't say it up front, but I think this is definitely post-1.5.3
material. :)
> > 2. It looks like doing an anonymous 'git-pull' leaves GITHEAD_* as the
> > commit sha1, which means you will end up with that sha1 rather than
> > 'REMOTE', which is less nice than the current behavior.
>
> Much less nice indeed.
I think this is a failing of git-merge, though, for not including that
nice human-readable information. We can fix it with something like this:
-- >8 --
diff --git a/git-merge.sh b/git-merge.sh
index e899801..742e15d 100755
--- a/git-merge.sh
+++ b/git-merge.sh
@@ -477,7 +477,14 @@ then
else
for remote
do
- echo $remote $(eval echo \$GITHEAD_$remote)
+ friendly_name=$(eval echo \$GITHEAD_$remote)
+ if echo $friendly_name | egrep -q '[0-9a-f]{40}'; then
+ friendly_name=$(
+ sed -ne "s/$friendly_name //p" \
+ <"$GIT_DIR/FETCH_HEAD" 2>/dev/null
+ )
+ fi
+ echo $remote "$friendly_name"
done >"$GIT_DIR/MERGE_HEAD"
printf '%s\n' "$merge_msg" >"$GIT_DIR/MERGE_MSG"
fi
-- 8< --
But probably it should wait for a better communications channel for
cross-command state.
> It would be very nice, and I would encourage any wannabe
> Porcelain writers to go wild on this. One worry I have is if we
> would need to support nested states. "I was in the middle of
> 'foo' and then had to go sideways to do 'bar' which I am now in
> the middle of" kind of thing.
It's just a stack, so I think you could implement it as a linked
list, with STATE being the head of the list, and each STATE file you
write pointing to the previous one (which you rename when pushing).
I might try to work on this, but definitely not tonight.
-Peff
next prev parent reply other threads:[~2007-08-20 8:52 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-08-20 7:53 [RFC] git-mergetool: show original branch names when possible Jeff King
2007-08-20 8:28 ` Junio C Hamano
2007-08-20 8:52 ` Jeff King [this message]
2007-08-20 18:17 ` Jan Hudec
2007-08-21 6:10 ` Jeff King
2007-08-21 14:59 ` Jan Hudec
2007-08-21 20:55 ` Jeff King
2007-08-21 21:17 ` 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=20070820085246.GA23764@coredump.intra.peff.net \
--to=peff@peff.net \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=tytso@mit.edu \
/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).