login
Header Space

 
 

Re: mergetool feature request - select remote or local

Score:
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: Junio C Hamano <gitster@...>
Cc: Caleb Cushing <xenoterracide@...>, <git@...>, Theodore Ts'o <tytso@...>
Date: Wednesday, May 14, 2008 - 2:40 pm

On Wed, 14 May 2008, Junio C Hamano wrote:


This is "for all (or some, by pathspecs) files currently unmerged in the 
index, resolve them to the version in MERGE_HEAD", right?


Like this (also untested)? (This is missing defaulting to a pathspec of 
'.' if --unmerged is used without any pathspecs)

diff --git a/builtin-checkout.c b/builtin-checkout.c
index 10ec137..0bae1d4 100644
--- a/builtin-checkout.c
+++ b/builtin-checkout.c
@@ -42,6 +42,8 @@ static int post_checkout_hook(struct commit *old, struct commit *new,
 	return run_command(&proc);
 }
 
+static int unmerged;
+
 static int update_some(const unsigned char *sha1, const char *base, int baselen,
 		       const char *pathname, unsigned mode, int stage)
 {
@@ -59,6 +61,13 @@ static int update_some(const unsigned char *sha1, const char *base, int baselen,
 	hashcpy(ce->sha1, sha1);
 	memcpy(ce->name, base, baselen);
 	memcpy(ce->name + baselen, pathname, len - baselen);
+	if (unmerged) {
+		int pos = cache_name_pos(ce->name, len);
+		if (!(pos && pos < active_nr && ce_same_name(active_cache[pos], active_cache[pos + 1]))) {
+			free(ce);
+			return 0;
+		}
+	}
 	ce->ce_flags = create_ce_flags(len, 0);
 	ce->ce_mode = create_ce_mode(mode);
 	add_cache_entry(ce, ADD_CACHE_OK_TO_ADD | ADD_CACHE_OK_TO_REPLACE);
@@ -508,6 +517,7 @@ int cmd_checkout(int argc, const char **argv, const char *prefix)
 			BRANCH_TRACK_EXPLICIT),
 		OPT_BOOLEAN('f', NULL, &opts.force, "force"),
 		OPT_BOOLEAN('m', NULL, &opts.merge, "merge"),
+		OPT_BOOLEAN( 0 , "unmerged", &unmerged, "check out unmerged paths"),
 		OPT_END(),
 	};
 
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
mergetool feature request - select remote or local, Caleb Cushing, (Wed May 14, 7:21 am)
Re: mergetool feature request - select remote or local, Junio C Hamano, (Wed May 14, 1:47 pm)
Re: mergetool feature request - select remote or local, Caleb Cushing, (Wed May 14, 9:25 pm)
Re: mergetool feature request - select remote or local, Daniel Barkalow, (Wed May 14, 2:40 pm)
Re: mergetool feature request - select remote or local, Junio C Hamano, (Wed May 14, 3:19 pm)
speck-geostationary