mirror of
https://github.com/git/git.git
synced 2024-11-24 10:26:17 +08:00
log --graph: do not accept log --graphbogus
An obvious fix to the argument parser. Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
f53bc0953f
commit
37869f40a8
@ -1202,7 +1202,7 @@ int setup_revisions(int argc, const char **argv, struct rev_info *revs, const ch
|
||||
get_commit_format(arg+8, revs);
|
||||
continue;
|
||||
}
|
||||
if (!prefixcmp(arg, "--graph")) {
|
||||
if (!strcmp(arg, "--graph")) {
|
||||
revs->topo_order = 1;
|
||||
revs->rewrite_parents = 1;
|
||||
revs->graph = graph_init(revs);
|
||||
|
Loading…
Reference in New Issue
Block a user