summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: fc36f6a)
raw | patch | inline | side by side (parent: fc36f6a)
author | Johannes Schindelin <Johannes.Schindelin@gmx.de> | |
Thu, 25 May 2006 21:55:11 +0000 (23:55 +0200) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Fri, 26 May 2006 06:19:35 +0000 (23:19 -0700) |
Since the "a..b c..d" syntax is interpreted as "b ^a d ^c" as other
range-ish commands, if you want to format a..b and then c..d and end
up with files consecutively numbered, the second run needs to be able
to tell the command what number to start from.
This does not imply --numbered (which gives [PATCH n/m] to the subject).
Signed-off-by: Junio C Hamano <junkio@cox.net>
range-ish commands, if you want to format a..b and then c..d and end
up with files consecutively numbered, the second run needs to be able
to tell the command what number to start from.
This does not imply --numbered (which gives [PATCH n/m] to the subject).
Signed-off-by: Junio C Hamano <junkio@cox.net>
builtin-log.c | patch | blob | history |
diff --git a/builtin-log.c b/builtin-log.c
index c8feb0f7953a4d431c180e33f9f71d4434a4e51a..71f4ff9b8f7054445dbc27733be41ad114f5e823 100644 (file)
--- a/builtin-log.c
+++ b/builtin-log.c
int nr = 0, total, i, j;
int use_stdout = 0;
int numbered = 0;
+ int start_number = -1;
int keep_subject = 0;
init_revisions(&rev);
else if (!strcmp(argv[i], "-n") ||
!strcmp(argv[i], "--numbered"))
numbered = 1;
- else if (!strcmp(argv[i], "-k") ||
+ else if (!strncmp(argv[i], "--start-number=", 15))
+ start_number = strtol(argv[i] + 15, NULL, 10);
+ else if (!strcmp(argv[i], "--start-number")) {
+ i++;
+ if (i == argc)
+ die("Need a number for --start-number");
+ start_number = strtol(argv[i], NULL, 10);
+ } else if (!strcmp(argv[i], "-k") ||
!strcmp(argv[i], "--keep-subject")) {
keep_subject = 1;
rev.total = -1;
}
argc = j;
+ if (numbered && start_number < 0)
+ start_number = 1;
if (numbered && keep_subject < 0)
die ("-n and -k are mutually exclusive.");
}
total = nr;
if (numbered)
- rev.total = total;
+ rev.total = total + start_number - 1;
while (0 <= --nr) {
int shown;
commit = list[nr];
- rev.nr = total - nr;
+ rev.nr = rev.total - nr;
if (!use_stdout)
reopen_stdout(commit, rev.nr, keep_subject);
shown = log_tree_commit(&rev, commit);