diff options
author | Junio C Hamano <junkio@cox.net> | 2006-03-01 00:58:56 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-03-01 03:16:34 -0800 |
commit | 7ae0b0cb65f069b657155abcb6aa6780b93ce881 (patch) | |
tree | 089e8ef278433352c53950dfad58800cf5b17770 /rev-list.c | |
parent | fd751667a21b8fb9ece9bf7df10ac04e72be13b0 (diff) | |
download | git-7ae0b0cb65f069b657155abcb6aa6780b93ce881.tar.gz git-7ae0b0cb65f069b657155abcb6aa6780b93ce881.tar.xz |
git-log (internal): more options.
This ports the following options from rev-list based git-log
implementation:
* -<n>, -n<n>, and -n <n>. I am still wondering if we want
this natively supported by setup_revisions(), which already
takes --max-count. We may want to move them in the next
round. Also I am not sure if we can get away with not
setting revs->limited when we set max-count. The latest
rev-list.c and revision.c in this series do not, so I left
them as they are.
* --pretty and --pretty=<fmt>.
* --abbrev=<n> and --no-abbrev.
The previous commit already handles time-based limiters
(--since, --until and friends). The remaining things that
rev-list based git-log happens to do are not useful in a pure
log-viewing purposes, and not ported:
* --bisect (obviously).
* --header. I am actually in favor of doing the NUL
terminated record format, but rev-list based one always
passed --pretty, which defeated this option. Maybe next
round.
* --parents. I do not think of a reason a log viewer wants
this. The flag is primarily for feeding squashed history
via pipe to downstream tools.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'rev-list.c')
-rw-r--r-- | rev-list.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/rev-list.c b/rev-list.c index 6af8d869e..8e4d83efb 100644 --- a/rev-list.c +++ b/rev-list.c @@ -7,10 +7,9 @@ #include "diff.h" #include "revision.h" -/* bits #0-3 in revision.h */ +/* bits #0-4 in revision.h */ -#define COUNTED (1u << 4) -#define TMP_MARK (1u << 5) /* for isolated cases; clean after use */ +#define COUNTED (1u<<5) static const char rev_list_usage[] = "git-rev-list [OPTION] <commit-id>... [ -- paths... ]\n" |