TODO: format-patch.

This commit is contained in:
Junio C Hamano
2006-01-18 20:53:12 -08:00
parent b14e2494b8
commit 6f4a70cb23

23
TODO
View File

@@ -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)
-------------------