diff options
| author | Junio C Hamano <gitster@pobox.com> | 2024-02-06 14:31:20 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-02-06 14:31:20 -0800 |
| commit | 76bb1896de15c8d358e5adad298c90cafa98aaf5 (patch) | |
| tree | 8ca4ea1c3bc9420fbffb8644a3587590c4f708db /builtin/config.c | |
| parent | Merge branch 'tb/pack-bitmap-drop-unused-struct-member' (diff) | |
| parent | config: add back code comment (diff) | |
| download | git-76bb1896de15c8d358e5adad298c90cafa98aaf5.tar.gz git-76bb1896de15c8d358e5adad298c90cafa98aaf5.zip | |
Merge branch 'kh/maintenance-use-xdg-when-it-should'
Comment fix.
* kh/maintenance-use-xdg-when-it-should:
config: add back code comment
Diffstat (limited to 'builtin/config.c')
| -rw-r--r-- | builtin/config.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/builtin/config.c b/builtin/config.c index 08fe36d499..b55bfae7d6 100644 --- a/builtin/config.c +++ b/builtin/config.c @@ -710,6 +710,12 @@ int cmd_config(int argc, const char **argv, const char *prefix) if (use_global_config) { given_config_source.file = git_global_config(); if (!given_config_source.file) + /* + * It is unknown if HOME/.gitconfig exists, so + * we do not know if we should write to XDG + * location; error out even if XDG_CONFIG_HOME + * is set and points at a sane location. + */ die(_("$HOME not set")); given_config_source.scope = CONFIG_SCOPE_GLOBAL; } else if (use_system_config) { |
