From 7b0c996679e975b666fd27c922e1e0837b611c98 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Thu, 30 Mar 2006 16:52:42 -0800 Subject: Move "--parent" parsing into generic revision.c library code Not only do we do it in both rev-list.c and git.c, the revision walking code will soon want to know whether we should rewrite parenthood information or not. Signed-off-by: Linus Torvalds Signed-off-by: Junio C Hamano --- revision.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'revision.c') diff --git a/revision.c b/revision.c index c2a95aabe..1224a2de6 100644 --- a/revision.c +++ b/revision.c @@ -605,6 +605,10 @@ int setup_revisions(int argc, const char **argv, struct rev_info *revs, const ch revs->limited = 1; continue; } + if (!strcmp(arg, "--parents")) { + revs->parents = 1; + continue; + } if (!strcmp(arg, "--dense")) { revs->dense = 1; continue; -- cgit v1.2.1