diff options
author | Junio C Hamano <junkio@cox.net> | 2006-03-01 00:12:37 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-01 03:16:34 -0800 |
commit | fd751667a21b8fb9ece9bf7df10ac04e72be13b0 (patch) | |
tree | 899e1ef357400ccff45fb1ed6f8b75bda5749314 /revision.c | |
parent | 765ac8ec469f110e88376e4fac05d0ed475bcb28 (diff) | |
download | git-fd751667a21b8fb9ece9bf7df10ac04e72be13b0.tar.gz |
git-log (internal): add approxidate.
Next will be the pretty-print format.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'revision.c')
-rw-r--r-- | revision.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/revision.c b/revision.c index c84f14609b..4885871425 100644 --- a/revision.c +++ b/revision.c @@ -492,6 +492,26 @@ int setup_revisions(int argc, const char **argv, struct rev_info *revs, const ch revs->limited = 1; continue; } + if (!strncmp(arg, "--since=", 8)) { + revs->max_age = approxidate(arg + 8); + revs->limited = 1; + continue; + } + if (!strncmp(arg, "--after=", 8)) { + revs->max_age = approxidate(arg + 8); + revs->limited = 1; + continue; + } + if (!strncmp(arg, "--before=", 9)) { + revs->min_age = approxidate(arg + 9); + revs->limited = 1; + continue; + } + if (!strncmp(arg, "--until=", 8)) { + revs->min_age = approxidate(arg + 8); + revs->limited = 1; + continue; + } if (!strcmp(arg, "--all")) { handle_all(revs, flags); continue; |