commit-graph: add core.commitGraph setting
The commit graph feature is controlled by the new core.commitGraph config setting. This defaults to 0, so the feature is opt-in. The intention of core.commitGraph is that a user can always stop checking for or parsing commit graph files if core.commitGraph=0. Signed-off-by: Derrick Stolee <dstolee@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
2a2e32bdc5
commit
1b70dfd594
@ -898,6 +898,10 @@ core.notesRef::
|
|||||||
This setting defaults to "refs/notes/commits", and it can be overridden by
|
This setting defaults to "refs/notes/commits", and it can be overridden by
|
||||||
the `GIT_NOTES_REF` environment variable. See linkgit:git-notes[1].
|
the `GIT_NOTES_REF` environment variable. See linkgit:git-notes[1].
|
||||||
|
|
||||||
|
core.commitGraph::
|
||||||
|
Enable git commit graph feature. Allows reading from the
|
||||||
|
commit-graph file.
|
||||||
|
|
||||||
core.sparseCheckout::
|
core.sparseCheckout::
|
||||||
Enable "sparse checkout" feature. See section "Sparse checkout" in
|
Enable "sparse checkout" feature. See section "Sparse checkout" in
|
||||||
linkgit:git-read-tree[1] for more information.
|
linkgit:git-read-tree[1] for more information.
|
||||||
|
1
cache.h
1
cache.h
@ -801,6 +801,7 @@ extern char *git_replace_ref_base;
|
|||||||
|
|
||||||
extern int fsync_object_files;
|
extern int fsync_object_files;
|
||||||
extern int core_preload_index;
|
extern int core_preload_index;
|
||||||
|
extern int core_commit_graph;
|
||||||
extern int core_apply_sparse_checkout;
|
extern int core_apply_sparse_checkout;
|
||||||
extern int precomposed_unicode;
|
extern int precomposed_unicode;
|
||||||
extern int protect_hfs;
|
extern int protect_hfs;
|
||||||
|
5
config.c
5
config.c
@ -1226,6 +1226,11 @@ static int git_default_core_config(const char *var, const char *value)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!strcmp(var, "core.commitgraph")) {
|
||||||
|
core_commit_graph = git_config_bool(var, value);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
if (!strcmp(var, "core.sparsecheckout")) {
|
if (!strcmp(var, "core.sparsecheckout")) {
|
||||||
core_apply_sparse_checkout = git_config_bool(var, value);
|
core_apply_sparse_checkout = git_config_bool(var, value);
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -62,6 +62,7 @@ enum push_default_type push_default = PUSH_DEFAULT_UNSPECIFIED;
|
|||||||
enum object_creation_mode object_creation_mode = OBJECT_CREATION_MODE;
|
enum object_creation_mode object_creation_mode = OBJECT_CREATION_MODE;
|
||||||
char *notes_ref_name;
|
char *notes_ref_name;
|
||||||
int grafts_replace_parents = 1;
|
int grafts_replace_parents = 1;
|
||||||
|
int core_commit_graph;
|
||||||
int core_apply_sparse_checkout;
|
int core_apply_sparse_checkout;
|
||||||
int merge_log_config = -1;
|
int merge_log_config = -1;
|
||||||
int precomposed_unicode = -1; /* see probe_utf8_pathname_composition() */
|
int precomposed_unicode = -1; /* see probe_utf8_pathname_composition() */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user