diff options
author | Adam Simpkins <adam@adamsimpkins.net> | 2008-05-04 03:36:54 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-05-05 18:46:35 -0700 |
commit | 7fefda5cc7a5faf7962092367bedb321a634d54d (patch) | |
tree | b52dbe550af5064d586abfc07f2a0f61f31f7b73 /revision.h | |
parent | c12172d2eab91b79b8181b04ab5a5332a96e34a8 (diff) | |
download | git-7fefda5cc7a5faf7962092367bedb321a634d54d.tar.gz git-7fefda5cc7a5faf7962092367bedb321a634d54d.tar.xz |
log and rev-list: add --graph option
This new option causes a text-based representation of the history to be
printed to the left of the normal output.
Signed-off-by: Adam Simpkins <adam@adamsimpkins.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'revision.h')
-rw-r--r-- | revision.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/revision.h b/revision.h index 201bd97c5..abce5001f 100644 --- a/revision.h +++ b/revision.h @@ -66,7 +66,8 @@ struct rev_info { /* Format info */ unsigned int shown_one:1, abbrev_commit:1, - use_terminator:1; + use_terminator:1, + missing_newline:1; enum date_mode date_mode; const char **ignore_packed; /* pretend objects in these are unpacked */ @@ -89,6 +90,9 @@ struct rev_info { /* Filter by commit log message */ struct grep_opt *grep_filter; + /* Display history graph */ + struct git_graph *graph; + /* special limits */ int skip_count; int max_count; |