diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-09-30 13:19:32 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-09-30 13:19:32 +0900 |
commit | 5a5350940bd5407968b158c0059938fa5cc0860e (patch) | |
tree | 590d09862ea1657b53b4abb7d75da597ed380aad /repository.h | |
parent | Merge branch 'bw/rebase-autostash-keep-current-branch' (diff) | |
parent | fetch: add fetch.writeCommitGraph config setting (diff) | |
download | tgif-5a5350940bd5407968b158c0059938fa5cc0860e.tar.xz |
Merge branch 'ds/commit-graph-on-fetch'
A configuration variable tells "git fetch" to write the commit
graph after finishing.
* ds/commit-graph-on-fetch:
fetch: add fetch.writeCommitGraph config setting
Diffstat (limited to 'repository.h')
-rw-r--r-- | repository.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/repository.h b/repository.h index 4da275e73f..fe0b5f5dc6 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; |