From 6f4a70cb236d34b8152f998678be10e7e173f16f Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Wed, 18 Jan 2006 20:53:12 -0800 Subject: [PATCH] TODO: format-patch. --- TODO | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/TODO b/TODO index 836c8e3d..a1dd9285 100644 --- a/TODO +++ b/TODO @@ -39,6 +39,29 @@ Design issues <7vacdzkww3.fsf@assigned-by-dhcp.cox.net> +* Make 'format-patch' take revision limiters similar to + rev-list. For example: + + A C + ....---x---o---o---x---o---o + / + / + / + ....---x---o---o + B + + we should be able to format commits 'o', without duplicates, + by: + + $ git format-patch ^A ^B C + + Currently the closest approximation is + + $ git format-patch A..C B..C + + which results in the last two commits including C formatted + twice. + Technical (heavier) ------------------- -- 2.11.0