git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jeff King <peff@peff.net>
To: Junio C Hamano <gitster@pobox.com>
Cc: kusmabite@gmail.com, git@vger.kernel.org,
	matthieu.moy@grenoble-inp.fr, hellmuth@ira.uka.de
Subject: Re: [PATCH] add -p: skip conflicted paths
Date: Wed, 4 Apr 2012 05:46:18 -0400	[thread overview]
Message-ID: <20120404094618.GA13870@sigill.intra.peff.net> (raw)
In-Reply-To: <7v398mgfdu.fsf@alter.siamese.dyndns.org>

On Mon, Apr 02, 2012 at 11:25:33AM -0700, Junio C Hamano wrote:

> >> I like that we are down to a single ls-files invocation here. But can't
> >> we determine from the diff-files output whether an entry is unmerged. In
> >> my simple tests, I see that --numstat will show two lines for such an
> >> entry. Is that reliable?
> >
> > Nice. I've observed the same thing (although I've seen three entries,
> > not two). I don't know about the reliability, but I think it kind of
> > makes sense; one entry for both parents, and one for the unmerged
> > working-copy version.
> 
> Should I be dissappointed, or should I be happy for seeing "division of
> labor" working?

The latter. I suspected something similar when writing my original
message, but didn't think too hard about it. Thanks for clarifying.

I do still think it would be nicer to pass the information out to the
caller instead of just filtering. So combining the two patches, we have
something like:

diff --git a/git-add--interactive.perl b/git-add--interactive.perl
index 2ee0908..0a83f56 100755
--- a/git-add--interactive.perl
+++ b/git-add--interactive.perl
@@ -292,7 +292,7 @@ sub get_empty_tree {
 # FILE_ADDDEL:	is it add/delete between index and file?
 
 sub list_modified {
-	my ($only) = @_;
+	my ($only, $note_unmerged) = @_;
 	my (%data, @return);
 	my ($add, $del, $adddel, $file);
 	my @tracked = ();
@@ -370,6 +370,18 @@ sub list_modified {
 		}
 	}
 
+	if ($note_unmerged) {
+		for (run_cmd_pipe(qw(git ls-files -u --), @ARGV)) {
+			chomp $_;
+			if (/^[0-7]+ [0-9a-f]{40} [0-3]	(.*)/) {
+				my $path = unquote_path($1);
+				if (exists($data{$path})) {
+					$data{$path}{UNMERGED} = 1;
+				}
+			}
+		}
+	}
+
 	for (sort keys %data) {
 		my $it = $data{$_};
 
@@ -1211,10 +1223,14 @@ sub apply_patch_for_checkout_commit {
 }
 
 sub patch_update_cmd {
-	my @all_mods = list_modified($patch_mode_flavour{FILTER});
+	my @all_mods = list_modified($patch_mode_flavour{FILTER}, 'note-unmerged');
 	my @mods = grep { !($_->{BINARY}) } @all_mods;
 	my @them;
 
+	print colored $error_color, "ignoring unmerged: $_->{VALUE}\n"
+		for grep { $_->{UNMERGED} } @mods;
+	@mods = grep { !$_->{UNMERGED} } @mods;
+
 	if (!@mods) {
 		if (@all_mods) {
 			print STDERR "Only binary files changed.\n";

  reply	other threads:[~2012-04-04  9:46 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-03-28 19:18 [PATCH] add -p: skip conflicted paths Erik Faye-Lund
2012-03-28 19:28 ` Junio C Hamano
2012-03-28 20:20   ` Erik Faye-Lund
2012-03-28 21:39     ` Junio C Hamano
2012-03-28 21:58       ` Junio C Hamano
2012-03-28 22:14         ` Junio C Hamano
2012-03-29  5:45           ` Jeff King
2012-04-02 17:20             ` Erik Faye-Lund
2012-04-02 18:25               ` Junio C Hamano
2012-04-04  9:46                 ` Jeff King [this message]
2012-04-04 12:50                   ` Tay Ray Chuan
2012-04-04 15:36                   ` Junio C Hamano
2012-04-04 18:29                     ` Junio C Hamano
2012-04-04 20:25                       ` Jeff King
2012-04-04 21:31                         ` Junio C Hamano
2012-04-05 12:30                           ` Jeff King

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=20120404094618.GA13870@sigill.intra.peff.net \
    --to=peff@peff.net \
    --cc=git@vger.kernel.org \
    --cc=gitster@pobox.com \
    --cc=hellmuth@ira.uka.de \
    --cc=kusmabite@gmail.com \
    --cc=matthieu.moy@grenoble-inp.fr \
    /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).