diff options
author | Derrick Stolee <dstolee@microsoft.com> | 2018-04-02 22:34:18 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-04-02 23:27:38 +0200 |
commit | 4ce58ee38de3ab0955b94946bfc339f387227223 (patch) | |
tree | 85f5ad519188e8bfbd9fb383a6b980fbb0349c69 /builtin.h | |
parent | graph: add commit graph design document (diff) | |
download | git-4ce58ee38de3ab0955b94946bfc339f387227223.tar.xz git-4ce58ee38de3ab0955b94946bfc339f387227223.zip |
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 'builtin.h')
-rw-r--r-- | builtin.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -149,6 +149,7 @@ extern int cmd_clone(int argc, const char **argv, const char *prefix); extern int cmd_clean(int argc, const char **argv, const char *prefix); extern int cmd_column(int argc, const char **argv, const char *prefix); extern int cmd_commit(int argc, const char **argv, const char *prefix); +extern int cmd_commit_graph(int argc, const char **argv, const char *prefix); extern int cmd_commit_tree(int argc, const char **argv, const char *prefix); extern int cmd_config(int argc, const char **argv, const char *prefix); extern int cmd_count_objects(int argc, const char **argv, const char *prefix); |