diff options
Diffstat (limited to 'repository.h')
-rw-r--r-- | repository.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/repository.h b/repository.h index 4da275e73f..fe42197813 100644 --- a/repository.h +++ b/repository.h @@ -30,6 +30,7 @@ struct repo_settings { int core_commit_graph; int gc_write_commit_graph; + int fetch_write_commit_graph; int index_version; enum untracked_cache_setting core_untracked_cache; @@ -124,6 +125,9 @@ struct repository { /* A unique-id for tracing purposes. */ int trace2_repo_id; + /* True if commit-graph has been disabled within this process. */ + int commit_graph_disabled; + /* Configurations */ /* Indicate if a repository has a different 'commondir' from 'gitdir' */ |