Merge branch 'jc/maint-1.6.0-blame-s'
* jc/maint-1.6.0-blame-s: blame: read custom grafts given by -S before calling setup_revisions() Conflicts: builtin-blame.c
This commit is contained in:
commit
3fcee259d0
@ -2250,6 +2250,10 @@ int cmd_blame(int argc, const char **argv, const char *prefix)
|
|||||||
parse_done:
|
parse_done:
|
||||||
argc = parse_options_end(&ctx);
|
argc = parse_options_end(&ctx);
|
||||||
|
|
||||||
|
if (revs_file && read_ancestry(revs_file))
|
||||||
|
die("reading graft file %s failed: %s",
|
||||||
|
revs_file, strerror(errno));
|
||||||
|
|
||||||
if (cmd_is_annotate) {
|
if (cmd_is_annotate) {
|
||||||
output_option |= OUTPUT_ANNOTATE_COMPAT;
|
output_option |= OUTPUT_ANNOTATE_COMPAT;
|
||||||
blame_date_mode = DATE_ISO8601;
|
blame_date_mode = DATE_ISO8601;
|
||||||
@ -2418,10 +2422,6 @@ parse_done:
|
|||||||
sb.ent = ent;
|
sb.ent = ent;
|
||||||
sb.path = path;
|
sb.path = path;
|
||||||
|
|
||||||
if (revs_file && read_ancestry(revs_file))
|
|
||||||
die("reading graft file %s failed: %s",
|
|
||||||
revs_file, strerror(errno));
|
|
||||||
|
|
||||||
read_mailmap(&mailmap, NULL);
|
read_mailmap(&mailmap, NULL);
|
||||||
|
|
||||||
if (!incremental)
|
if (!incremental)
|
||||||
|
Loading…
Reference in New Issue
Block a user