mirror of
https://github.com/git/git.git
synced 2026-03-01 18:24:00 +01:00
Merge branch 'ob/core-attributesfile-in-repository' into next
The core.attributesfile is intended to be set per repository, but were kept track of by a single global variable in-core, which has been corrected by moving it to per-repository data structure. * ob/core-attributesfile-in-repository: environment: move "branch.autoSetupMerge" into `struct repo_config_values` environment: stop using core.sparseCheckout globally environment: stop storing `core.attributesFile` globally
This commit is contained in:
7
attr.c
7
attr.c
@@ -881,10 +881,11 @@ const char *git_attr_system_file(void)
|
||||
|
||||
const char *git_attr_global_file(void)
|
||||
{
|
||||
if (!git_attributes_file)
|
||||
git_attributes_file = xdg_config_home("attributes");
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
if (!cfg->attributes_file)
|
||||
cfg->attributes_file = xdg_config_home("attributes");
|
||||
|
||||
return git_attributes_file;
|
||||
return cfg->attributes_file;
|
||||
}
|
||||
|
||||
int git_attr_system_is_enabled(void)
|
||||
|
||||
2
branch.h
2
branch.h
@@ -15,8 +15,6 @@ enum branch_track {
|
||||
BRANCH_TRACK_SIMPLE,
|
||||
};
|
||||
|
||||
extern enum branch_track git_branch_track;
|
||||
|
||||
/* Functions for acting on the information about branches. */
|
||||
|
||||
/**
|
||||
|
||||
@@ -128,6 +128,7 @@ int cmd_backfill(int argc, const char **argv, const char *prefix, struct reposit
|
||||
N_("Restrict the missing objects to the current sparse-checkout")),
|
||||
OPT_END(),
|
||||
};
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
show_usage_with_options_if_asked(argc, argv,
|
||||
builtin_backfill_usage, options);
|
||||
@@ -138,7 +139,7 @@ int cmd_backfill(int argc, const char **argv, const char *prefix, struct reposit
|
||||
repo_config(repo, git_default_config, NULL);
|
||||
|
||||
if (ctx.sparse < 0)
|
||||
ctx.sparse = core_apply_sparse_checkout;
|
||||
ctx.sparse = cfg->apply_sparse_checkout;
|
||||
|
||||
result = do_backfill(&ctx);
|
||||
backfill_context_clear(&ctx);
|
||||
|
||||
@@ -724,6 +724,7 @@ int cmd_branch(int argc,
|
||||
static struct ref_sorting *sorting;
|
||||
struct string_list sorting_options = STRING_LIST_INIT_DUP;
|
||||
struct ref_format format = REF_FORMAT_INIT;
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
int ret;
|
||||
|
||||
struct option options[] = {
|
||||
@@ -795,7 +796,7 @@ int cmd_branch(int argc,
|
||||
if (!sorting_options.nr)
|
||||
string_list_append(&sorting_options, "refname");
|
||||
|
||||
track = git_branch_track;
|
||||
track = cfg->branch_track;
|
||||
|
||||
head = refs_resolve_refdup(get_main_ref_store(the_repository), "HEAD",
|
||||
0, &head_oid, NULL);
|
||||
|
||||
@@ -1603,6 +1603,7 @@ static void die_if_switching_to_a_branch_in_use(struct checkout_opts *opts,
|
||||
static int checkout_branch(struct checkout_opts *opts,
|
||||
struct branch_info *new_branch_info)
|
||||
{
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
int noop_switch = (!new_branch_info->name &&
|
||||
!opts->new_branch &&
|
||||
!opts->force_detach);
|
||||
@@ -1646,7 +1647,7 @@ static int checkout_branch(struct checkout_opts *opts,
|
||||
if (opts->track != BRANCH_TRACK_UNSPECIFIED)
|
||||
die(_("'%s' cannot be used with '%s'"), "--detach", "-t");
|
||||
} else if (opts->track == BRANCH_TRACK_UNSPECIFIED)
|
||||
opts->track = git_branch_track;
|
||||
opts->track = cfg->branch_track;
|
||||
|
||||
if (new_branch_info->name && !new_branch_info->commit)
|
||||
die(_("Cannot switch branch to a non-commit '%s'"),
|
||||
|
||||
@@ -616,13 +616,15 @@ static int git_sparse_checkout_init(const char *repo)
|
||||
{
|
||||
struct child_process cmd = CHILD_PROCESS_INIT;
|
||||
int result = 0;
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
strvec_pushl(&cmd.args, "-C", repo, "sparse-checkout", "set", NULL);
|
||||
|
||||
/*
|
||||
* We must apply the setting in the current process
|
||||
* for the later checkout to use the sparse-checkout file.
|
||||
*/
|
||||
core_apply_sparse_checkout = 1;
|
||||
cfg->apply_sparse_checkout = 1;
|
||||
|
||||
cmd.git_cmd = 1;
|
||||
if (run_command(&cmd)) {
|
||||
|
||||
@@ -482,7 +482,7 @@ static int grep_submodule(struct grep_opt *opt,
|
||||
* "forget" the sparse-index feature switch. As a result, the index
|
||||
* of these submodules are expanded unexpectedly.
|
||||
*
|
||||
* 2. "core_apply_sparse_checkout"
|
||||
* 2. "config_values_private_.apply_sparse_checkout"
|
||||
* When running `grep` in the superproject, this setting is
|
||||
* populated using the superproject's configs. However, once
|
||||
* initialized, this config is globally accessible and is read by
|
||||
|
||||
@@ -238,6 +238,7 @@ int cmd_mv(int argc,
|
||||
struct hashmap moved_dirs = HASHMAP_INIT(pathmap_cmp, NULL);
|
||||
struct strbuf pathbuf = STRBUF_INIT;
|
||||
int ret;
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
repo_config(the_repository, git_default_config, NULL);
|
||||
|
||||
@@ -572,7 +573,7 @@ remove_entry:
|
||||
rename_index_entry_at(the_repository->index, pos, dst);
|
||||
|
||||
if (ignore_sparse &&
|
||||
core_apply_sparse_checkout &&
|
||||
cfg->apply_sparse_checkout &&
|
||||
core_sparse_checkout_cone) {
|
||||
/*
|
||||
* NEEDSWORK: we are *not* paying attention to
|
||||
|
||||
@@ -151,6 +151,7 @@ static NORETURN void die_push_simple(struct branch *branch,
|
||||
const char *advice_pushdefault_maybe = "";
|
||||
const char *advice_automergesimple_maybe = "";
|
||||
const char *short_upstream = branch->merge[0]->src;
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
skip_prefix(short_upstream, "refs/heads/", &short_upstream);
|
||||
|
||||
@@ -162,7 +163,7 @@ static NORETURN void die_push_simple(struct branch *branch,
|
||||
advice_pushdefault_maybe = _("\n"
|
||||
"To choose either option permanently, "
|
||||
"see push.default in 'git help config'.\n");
|
||||
if (git_branch_track != BRANCH_TRACK_SIMPLE)
|
||||
if (cfg->branch_track != BRANCH_TRACK_SIMPLE)
|
||||
advice_automergesimple_maybe = _("\n"
|
||||
"To avoid automatically configuring "
|
||||
"an upstream branch when its name\n"
|
||||
|
||||
@@ -61,9 +61,10 @@ static int sparse_checkout_list(int argc, const char **argv, const char *prefix,
|
||||
struct pattern_list pl;
|
||||
char *sparse_filename;
|
||||
int res;
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
setup_work_tree();
|
||||
if (!core_apply_sparse_checkout)
|
||||
if (!cfg->apply_sparse_checkout)
|
||||
die(_("this worktree is not sparse"));
|
||||
|
||||
argc = parse_options(argc, argv, prefix,
|
||||
@@ -397,12 +398,14 @@ static int set_config(struct repository *repo,
|
||||
}
|
||||
|
||||
static enum sparse_checkout_mode update_cone_mode(int *cone_mode) {
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
/* If not specified, use previous definition of cone mode */
|
||||
if (*cone_mode == -1 && core_apply_sparse_checkout)
|
||||
if (*cone_mode == -1 && cfg->apply_sparse_checkout)
|
||||
*cone_mode = core_sparse_checkout_cone;
|
||||
|
||||
/* Set cone/non-cone mode appropriately */
|
||||
core_apply_sparse_checkout = 1;
|
||||
cfg->apply_sparse_checkout = 1;
|
||||
if (*cone_mode == 1 || *cone_mode == -1) {
|
||||
core_sparse_checkout_cone = 1;
|
||||
return MODE_CONE_PATTERNS;
|
||||
@@ -414,9 +417,10 @@ static enum sparse_checkout_mode update_cone_mode(int *cone_mode) {
|
||||
static int update_modes(struct repository *repo, int *cone_mode, int *sparse_index)
|
||||
{
|
||||
int mode, record_mode;
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
/* Determine if we need to record the mode; ensure sparse checkout on */
|
||||
record_mode = (*cone_mode != -1) || !core_apply_sparse_checkout;
|
||||
record_mode = (*cone_mode != -1) || !cfg->apply_sparse_checkout;
|
||||
|
||||
mode = update_cone_mode(cone_mode);
|
||||
if (record_mode && set_config(repo, mode))
|
||||
@@ -682,6 +686,7 @@ static int modify_pattern_list(struct repository *repo,
|
||||
int result;
|
||||
int changed_config = 0;
|
||||
struct pattern_list *pl = xcalloc(1, sizeof(*pl));
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
switch (m) {
|
||||
case ADD:
|
||||
@@ -697,9 +702,9 @@ static int modify_pattern_list(struct repository *repo,
|
||||
break;
|
||||
}
|
||||
|
||||
if (!core_apply_sparse_checkout) {
|
||||
if (!cfg->apply_sparse_checkout) {
|
||||
set_config(repo, MODE_ALL_PATTERNS);
|
||||
core_apply_sparse_checkout = 1;
|
||||
cfg->apply_sparse_checkout = 1;
|
||||
changed_config = 1;
|
||||
}
|
||||
|
||||
@@ -794,9 +799,10 @@ static int sparse_checkout_add(int argc, const char **argv, const char *prefix,
|
||||
};
|
||||
struct strvec patterns = STRVEC_INIT;
|
||||
int ret;
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
setup_work_tree();
|
||||
if (!core_apply_sparse_checkout)
|
||||
if (!cfg->apply_sparse_checkout)
|
||||
die(_("no sparse-checkout to add to"));
|
||||
|
||||
repo_read_index(repo);
|
||||
@@ -903,9 +909,10 @@ static int sparse_checkout_reapply(int argc, const char **argv,
|
||||
N_("toggle the use of a sparse index")),
|
||||
OPT_END(),
|
||||
};
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
setup_work_tree();
|
||||
if (!core_apply_sparse_checkout)
|
||||
if (!cfg->apply_sparse_checkout)
|
||||
die(_("must be in a sparse-checkout to reapply sparsity patterns"));
|
||||
|
||||
reapply_opts.cone_mode = -1;
|
||||
@@ -958,6 +965,7 @@ static int sparse_checkout_clean(int argc, const char **argv,
|
||||
size_t worktree_len;
|
||||
int force = 0, dry_run = 0, verbose = 0;
|
||||
int require_force = 1;
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
struct option builtin_sparse_checkout_clean_options[] = {
|
||||
OPT__DRY_RUN(&dry_run, N_("dry run")),
|
||||
@@ -967,7 +975,7 @@ static int sparse_checkout_clean(int argc, const char **argv,
|
||||
};
|
||||
|
||||
setup_work_tree();
|
||||
if (!core_apply_sparse_checkout)
|
||||
if (!cfg->apply_sparse_checkout)
|
||||
die(_("must be in a sparse-checkout to clean directories"));
|
||||
if (!core_sparse_checkout_cone)
|
||||
die(_("must be in a cone-mode sparse-checkout to clean directories"));
|
||||
@@ -1031,9 +1039,10 @@ static int sparse_checkout_disable(int argc, const char **argv,
|
||||
OPT_END(),
|
||||
};
|
||||
struct pattern_list pl;
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
/*
|
||||
* We do not exit early if !core_apply_sparse_checkout; due to the
|
||||
* We do not exit early if !repo->config_values.apply_sparse_checkout; due to the
|
||||
* ability for users to manually muck things up between
|
||||
* direct editing of .git/info/sparse-checkout
|
||||
* running read-tree -m u HEAD or update-index --skip-worktree
|
||||
@@ -1059,7 +1068,7 @@ static int sparse_checkout_disable(int argc, const char **argv,
|
||||
hashmap_init(&pl.recursive_hashmap, pl_hashmap_cmp, NULL, 0);
|
||||
hashmap_init(&pl.parent_hashmap, pl_hashmap_cmp, NULL, 0);
|
||||
pl.use_cone_patterns = 0;
|
||||
core_apply_sparse_checkout = 1;
|
||||
cfg->apply_sparse_checkout = 1;
|
||||
|
||||
add_pattern("/*", empty_base, 0, &pl, 0);
|
||||
|
||||
|
||||
@@ -3300,9 +3300,10 @@ static int module_create_branch(int argc, const char **argv, const char *prefix,
|
||||
N_("git submodule--helper create-branch [-f|--force] [--create-reflog] [-q|--quiet] [-t|--track] [-n|--dry-run] <name> <start-oid> <start-name>"),
|
||||
NULL
|
||||
};
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
repo_config(the_repository, git_default_config, NULL);
|
||||
track = git_branch_track;
|
||||
track = cfg->branch_track;
|
||||
argc = parse_options(argc, argv, prefix, options, usage, 0);
|
||||
|
||||
if (argc != 3)
|
||||
|
||||
@@ -473,6 +473,7 @@ static int add_worktree(const char *path, const char *refname,
|
||||
struct strbuf sb_name = STRBUF_INIT;
|
||||
struct worktree **worktrees, *wt = NULL;
|
||||
struct ref_store *wt_refs;
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
worktrees = get_worktrees();
|
||||
check_candidate_path(path, opts->force, worktrees, "add");
|
||||
@@ -570,7 +571,7 @@ static int add_worktree(const char *path, const char *refname,
|
||||
* If the current worktree has sparse-checkout enabled, then copy
|
||||
* the sparse-checkout patterns from the current worktree.
|
||||
*/
|
||||
if (core_apply_sparse_checkout)
|
||||
if (cfg->apply_sparse_checkout)
|
||||
copy_sparse_checkout(sb_repo.buf);
|
||||
|
||||
/*
|
||||
|
||||
4
dir.c
4
dir.c
@@ -1551,7 +1551,9 @@ done:
|
||||
|
||||
int init_sparse_checkout_patterns(struct index_state *istate)
|
||||
{
|
||||
if (!core_apply_sparse_checkout)
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
if (!cfg->apply_sparse_checkout)
|
||||
return 1;
|
||||
if (istate->sparse_checkout_patterns)
|
||||
return 0;
|
||||
|
||||
@@ -54,7 +54,6 @@ char *git_commit_encoding;
|
||||
char *git_log_output_encoding;
|
||||
char *apply_default_whitespace;
|
||||
char *apply_default_ignorewhitespace;
|
||||
char *git_attributes_file;
|
||||
int zlib_compression_level = Z_BEST_SPEED;
|
||||
int pack_compression_level = Z_DEFAULT_COMPRESSION;
|
||||
int fsync_object_files = -1;
|
||||
@@ -68,7 +67,6 @@ enum auto_crlf auto_crlf = AUTO_CRLF_FALSE;
|
||||
enum eol core_eol = EOL_UNSET;
|
||||
int global_conv_flags_eol = CONV_EOL_RNDTRP_WARN;
|
||||
char *check_roundtrip_encoding;
|
||||
enum branch_track git_branch_track = BRANCH_TRACK_REMOTE;
|
||||
enum rebase_setup_type autorebase = AUTOREBASE_NEVER;
|
||||
enum push_default_type push_default = PUSH_DEFAULT_UNSPECIFIED;
|
||||
#ifndef OBJECT_CREATION_MODE
|
||||
@@ -76,7 +74,6 @@ enum push_default_type push_default = PUSH_DEFAULT_UNSPECIFIED;
|
||||
#endif
|
||||
enum object_creation_mode object_creation_mode = OBJECT_CREATION_MODE;
|
||||
int grafts_keep_true_parents;
|
||||
int core_apply_sparse_checkout;
|
||||
int core_sparse_checkout_cone;
|
||||
int sparse_expect_files_outside_of_patterns;
|
||||
int precomposed_unicode = -1; /* see probe_utf8_pathname_composition() */
|
||||
@@ -304,6 +301,8 @@ next_name:
|
||||
int git_default_core_config(const char *var, const char *value,
|
||||
const struct config_context *ctx, void *cb)
|
||||
{
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
/* This needs a better name */
|
||||
if (!strcmp(var, "core.filemode")) {
|
||||
trust_executable_bit = git_config_bool(var, value);
|
||||
@@ -341,8 +340,8 @@ int git_default_core_config(const char *var, const char *value,
|
||||
}
|
||||
|
||||
if (!strcmp(var, "core.attributesfile")) {
|
||||
FREE_AND_NULL(git_attributes_file);
|
||||
return git_config_pathname(&git_attributes_file, var, value);
|
||||
FREE_AND_NULL(cfg->attributes_file);
|
||||
return git_config_pathname(&cfg->attributes_file, var, value);
|
||||
}
|
||||
|
||||
if (!strcmp(var, "core.bare")) {
|
||||
@@ -527,7 +526,7 @@ int git_default_core_config(const char *var, const char *value,
|
||||
}
|
||||
|
||||
if (!strcmp(var, "core.sparsecheckout")) {
|
||||
core_apply_sparse_checkout = git_config_bool(var, value);
|
||||
cfg->apply_sparse_checkout = git_config_bool(var, value);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -584,18 +583,20 @@ static int git_default_i18n_config(const char *var, const char *value)
|
||||
|
||||
static int git_default_branch_config(const char *var, const char *value)
|
||||
{
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
if (!strcmp(var, "branch.autosetupmerge")) {
|
||||
if (value && !strcmp(value, "always")) {
|
||||
git_branch_track = BRANCH_TRACK_ALWAYS;
|
||||
cfg->branch_track = BRANCH_TRACK_ALWAYS;
|
||||
return 0;
|
||||
} else if (value && !strcmp(value, "inherit")) {
|
||||
git_branch_track = BRANCH_TRACK_INHERIT;
|
||||
cfg->branch_track = BRANCH_TRACK_INHERIT;
|
||||
return 0;
|
||||
} else if (value && !strcmp(value, "simple")) {
|
||||
git_branch_track = BRANCH_TRACK_SIMPLE;
|
||||
cfg->branch_track = BRANCH_TRACK_SIMPLE;
|
||||
return 0;
|
||||
}
|
||||
git_branch_track = git_config_bool(var, value);
|
||||
cfg->branch_track = git_config_bool(var, value);
|
||||
return 0;
|
||||
}
|
||||
if (!strcmp(var, "branch.autosetuprebase")) {
|
||||
@@ -714,3 +715,10 @@ int git_default_config(const char *var, const char *value,
|
||||
/* Add other config variables here and to Documentation/config.adoc. */
|
||||
return 0;
|
||||
}
|
||||
|
||||
void repo_config_values_init(struct repo_config_values *cfg)
|
||||
{
|
||||
cfg->attributes_file = NULL;
|
||||
cfg->apply_sparse_checkout = 0;
|
||||
cfg->branch_track = BRANCH_TRACK_REMOTE;
|
||||
}
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
#define ENVIRONMENT_H
|
||||
|
||||
#include "repo-settings.h"
|
||||
#include "branch.h"
|
||||
|
||||
/* Double-check local_repo_env below if you add to this list. */
|
||||
#define GIT_DIR_ENVIRONMENT "GIT_DIR"
|
||||
@@ -85,6 +86,18 @@ extern const char * const local_repo_env[];
|
||||
|
||||
struct strvec;
|
||||
|
||||
struct repository;
|
||||
struct repo_config_values {
|
||||
/* section "core" config values */
|
||||
char *attributes_file;
|
||||
int apply_sparse_checkout;
|
||||
|
||||
/* section "branch" config values */
|
||||
enum branch_track branch_track;
|
||||
};
|
||||
|
||||
struct repo_config_values *repo_config_values(struct repository *repo);
|
||||
|
||||
/*
|
||||
* Wrapper of getenv() that returns a strdup value. This value is kept
|
||||
* in argv to be freed later.
|
||||
@@ -110,6 +123,8 @@ int git_default_config(const char *, const char *,
|
||||
int git_default_core_config(const char *var, const char *value,
|
||||
const struct config_context *ctx, void *cb);
|
||||
|
||||
void repo_config_values_init(struct repo_config_values *cfg);
|
||||
|
||||
/*
|
||||
* TODO: All the below state either explicitly or implicitly relies on
|
||||
* `the_repository`. We should eventually get rid of these and make the
|
||||
@@ -155,7 +170,6 @@ extern int assume_unchanged;
|
||||
extern int warn_on_object_refname_ambiguity;
|
||||
extern char *apply_default_whitespace;
|
||||
extern char *apply_default_ignorewhitespace;
|
||||
extern char *git_attributes_file;
|
||||
extern int zlib_compression_level;
|
||||
extern int pack_compression_level;
|
||||
extern unsigned long pack_size_limit_cfg;
|
||||
@@ -164,7 +178,6 @@ extern int precomposed_unicode;
|
||||
extern int protect_hfs;
|
||||
extern int protect_ntfs;
|
||||
|
||||
extern int core_apply_sparse_checkout;
|
||||
extern int core_sparse_checkout_cone;
|
||||
extern int sparse_expect_files_outside_of_patterns;
|
||||
|
||||
|
||||
@@ -10,6 +10,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
|
||||
{
|
||||
struct commit_graph *g;
|
||||
|
||||
memset(the_repository, 0, sizeof(*the_repository));
|
||||
initialize_repository(the_repository);
|
||||
|
||||
/*
|
||||
|
||||
14
repository.c
14
repository.c
@@ -51,13 +51,27 @@ static void set_default_hash_algo(struct repository *repo)
|
||||
repo_set_hash_algo(repo, algo);
|
||||
}
|
||||
|
||||
struct repo_config_values *repo_config_values(struct repository *repo)
|
||||
{
|
||||
if (repo != the_repository)
|
||||
BUG("trying to read config from wrong repository instance");
|
||||
if (!repo->initialized)
|
||||
BUG("config values from uninitialized repository");
|
||||
return &repo->config_values_private_;
|
||||
}
|
||||
|
||||
void initialize_repository(struct repository *repo)
|
||||
{
|
||||
if (repo->initialized)
|
||||
BUG("repository initialized already");
|
||||
repo->initialized = true;
|
||||
|
||||
repo->remote_state = remote_state_new();
|
||||
repo->parsed_objects = parsed_object_pool_new(repo);
|
||||
ALLOC_ARRAY(repo->index, 1);
|
||||
index_state_init(repo->index, repo);
|
||||
repo->check_deprecated_config = true;
|
||||
repo_config_values_init(&repo->config_values_private_);
|
||||
|
||||
/*
|
||||
* When a command runs inside a repository, it learns what
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
|
||||
#include "strmap.h"
|
||||
#include "repo-settings.h"
|
||||
#include "environment.h"
|
||||
|
||||
struct config_set;
|
||||
struct git_hash_algo;
|
||||
@@ -148,6 +149,9 @@ struct repository {
|
||||
/* Repository's compatibility hash algorithm. */
|
||||
const struct git_hash_algo *compat_hash_algo;
|
||||
|
||||
/* Repository's config values parsed by git_default_config() */
|
||||
struct repo_config_values config_values_private_;
|
||||
|
||||
/* Repository's reference storage format, as serialized on disk. */
|
||||
enum ref_storage_format ref_storage_format;
|
||||
/*
|
||||
@@ -183,6 +187,9 @@ struct repository {
|
||||
|
||||
/* Should repo_config() check for deprecated settings */
|
||||
bool check_deprecated_config;
|
||||
|
||||
/* Has this repository instance been initialized? */
|
||||
bool initialized;
|
||||
};
|
||||
|
||||
#ifdef USE_THE_REPOSITORY_VARIABLE
|
||||
|
||||
@@ -152,7 +152,9 @@ static int index_has_unmerged_entries(struct index_state *istate)
|
||||
|
||||
int is_sparse_index_allowed(struct index_state *istate, int flags)
|
||||
{
|
||||
if (!core_apply_sparse_checkout || !core_sparse_checkout_cone)
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
if (!cfg->apply_sparse_checkout || !core_sparse_checkout_cone)
|
||||
return 0;
|
||||
|
||||
if (!(flags & SPARSE_INDEX_MEMORY_ONLY)) {
|
||||
@@ -670,7 +672,9 @@ static void clear_skip_worktree_from_present_files_full(struct index_state *ista
|
||||
|
||||
void clear_skip_worktree_from_present_files(struct index_state *istate)
|
||||
{
|
||||
if (!core_apply_sparse_checkout ||
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
if (!cfg->apply_sparse_checkout ||
|
||||
sparse_expect_files_outside_of_patterns)
|
||||
return;
|
||||
|
||||
|
||||
@@ -1888,6 +1888,7 @@ int unpack_trees(unsigned len, struct tree_desc *t, struct unpack_trees_options
|
||||
struct pattern_list pl;
|
||||
int free_pattern_list = 0;
|
||||
struct dir_struct dir = DIR_INIT;
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
if (o->reset == UNPACK_RESET_INVALID)
|
||||
BUG("o->reset had a value of 1; should be UNPACK_TREES_*_UNTRACKED");
|
||||
@@ -1924,7 +1925,7 @@ int unpack_trees(unsigned len, struct tree_desc *t, struct unpack_trees_options
|
||||
if (o->prefix)
|
||||
update_sparsity_for_prefix(o->prefix, o->src_index);
|
||||
|
||||
if (!core_apply_sparse_checkout || !o->update)
|
||||
if (!cfg->apply_sparse_checkout || !o->update)
|
||||
o->skip_sparse_checkout = 1;
|
||||
if (!o->skip_sparse_checkout) {
|
||||
memset(&pl, 0, sizeof(pl));
|
||||
|
||||
@@ -1793,8 +1793,10 @@ static void wt_status_check_sparse_checkout(struct repository *r,
|
||||
{
|
||||
int skip_worktree = 0;
|
||||
int i;
|
||||
struct repo_config_values *cfg = repo_config_values(the_repository);
|
||||
|
||||
if (!core_apply_sparse_checkout || r->index->cache_nr == 0) {
|
||||
if (!cfg->apply_sparse_checkout ||
|
||||
r->index->cache_nr == 0) {
|
||||
/*
|
||||
* Don't compute percentage of checked out files if we
|
||||
* aren't in a sparse checkout or would get division by 0.
|
||||
|
||||
Reference in New Issue
Block a user