diff options
author | Adam Simpkins <adam@adamsimpkins.net> | 2008-05-04 03:36:53 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-05-05 17:56:36 -0700 |
commit | c12172d2eab91b79b8181b04ab5a5332a96e34a8 (patch) | |
tree | f5d604f86e3618c3b1b7e16e635b9b1e8aaa263f /Makefile | |
parent | 885cf808998c4e6d685c669a44f02b37f6965fd9 (diff) | |
download | git-c12172d2eab91b79b8181b04ab5a5332a96e34a8.tar.gz git-c12172d2eab91b79b8181b04ab5a5332a96e34a8.tar.xz |
Add history graph API
This new API allows the commit history to be displayed as a text-based
graphical representation.
Signed-off-by: Adam Simpkins <adam@adamsimpkins.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -346,6 +346,7 @@ LIB_H += diff.h LIB_H += dir.h LIB_H += fsck.h LIB_H += git-compat-util.h +LIB_H += graph.h LIB_H += grep.h LIB_H += hash.h LIB_H += list-objects.h @@ -411,6 +412,7 @@ LIB_OBJS += entry.o LIB_OBJS += environment.o LIB_OBJS += exec_cmd.o LIB_OBJS += fsck.o +LIB_OBJS += graph.o LIB_OBJS += grep.o LIB_OBJS += hash.o LIB_OBJS += help.o |