зеркало из https://github.com/microsoft/git.git
Merge branch 'ds/commit-graph-set-size-mult'
The code to write split commit-graph file(s) upon fetching computed bogus value for the parameter used in splitting the resulting files, which has been corrected. * ds/commit-graph-set-size-mult: commit-graph: prefer default size_mult when given zero
This commit is contained in:
Коммит
037f067587
|
@ -1866,15 +1866,13 @@ int cmd_fetch(int argc, const char **argv, const char *prefix)
|
||||||
(fetch_write_commit_graph < 0 &&
|
(fetch_write_commit_graph < 0 &&
|
||||||
the_repository->settings.fetch_write_commit_graph)) {
|
the_repository->settings.fetch_write_commit_graph)) {
|
||||||
int commit_graph_flags = COMMIT_GRAPH_WRITE_SPLIT;
|
int commit_graph_flags = COMMIT_GRAPH_WRITE_SPLIT;
|
||||||
struct split_commit_graph_opts split_opts;
|
|
||||||
memset(&split_opts, 0, sizeof(struct split_commit_graph_opts));
|
|
||||||
|
|
||||||
if (progress)
|
if (progress)
|
||||||
commit_graph_flags |= COMMIT_GRAPH_WRITE_PROGRESS;
|
commit_graph_flags |= COMMIT_GRAPH_WRITE_PROGRESS;
|
||||||
|
|
||||||
write_commit_graph_reachable(get_object_directory(),
|
write_commit_graph_reachable(get_object_directory(),
|
||||||
commit_graph_flags,
|
commit_graph_flags,
|
||||||
&split_opts);
|
NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
close_object_store(the_repository->objects);
|
close_object_store(the_repository->objects);
|
||||||
|
|
|
@ -1542,6 +1542,8 @@ static void split_graph_merge_strategy(struct write_commit_graph_context *ctx)
|
||||||
|
|
||||||
if (ctx->split_opts) {
|
if (ctx->split_opts) {
|
||||||
max_commits = ctx->split_opts->max_commits;
|
max_commits = ctx->split_opts->max_commits;
|
||||||
|
|
||||||
|
if (ctx->split_opts->size_multiple)
|
||||||
size_mult = ctx->split_opts->size_multiple;
|
size_mult = ctx->split_opts->size_multiple;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче