diff options
author | Derrick Stolee <dstolee@microsoft.com> | 2018-04-02 16:34:18 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-04-02 14:27:38 -0700 |
commit | 4ce58ee38de3ab0955b94946bfc339f387227223 (patch) | |
tree | 85f5ad519188e8bfbd9fb383a6b980fbb0349c69 /Makefile | |
parent | ae30d7b1151348068a24ac241cb4f6ad7f5e661b (diff) | |
download | git-4ce58ee38de3ab0955b94946bfc339f387227223.tar.gz |
commit-graph: create git-commit-graph builtin
Teach git the 'commit-graph' builtin that will be used for writing and
reading packed graph files. The current implementation is mostly
empty, except for an '--object-dir' option.
Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -946,6 +946,7 @@ BUILTIN_OBJS += builtin/clone.o BUILTIN_OBJS += builtin/column.o BUILTIN_OBJS += builtin/commit-tree.o BUILTIN_OBJS += builtin/commit.o +BUILTIN_OBJS += builtin/commit-graph.o BUILTIN_OBJS += builtin/config.o BUILTIN_OBJS += builtin/count-objects.o BUILTIN_OBJS += builtin/credential.o |