Honor $GIT_HOME that is favoured over $HOME, just like $GIT_EDITOR overrides $EDITOR. That allows us to extend the notion more naturally in the future. For example, when we start reading from $HOME/.gitconfig, if the GIT_HOME environment is set, we would instead read from $GIT_HOME/.gitconfig. Signed-off-by: Miklos Vajna <vmiklos@xxxxxxxxxxxxxx> --- On Sat, Dec 19, 2009 at 11:21:57AM -0800, Junio C Hamano <gitster@xxxxxxxxx> wrote: > then a mechanical s/getenv("GIT_HOME")/gitcustom_home()/; will make the > resulting code a lot simpler and a new callsite somebody may add in the > future would not have to duplicate three lines. Done. > But I sense that Moe is retracting his claim that the unmodified git > doesn't do what he needs to do, after Dscho suggested to use more specific > environment variables to the task at hand? I think Moe's problem is now solved by Dscho's suggestion, but this patch helps other users where the user-specific setting may contain other settings like diff.color (when $HOME is the same but GIT_HOME is set based on ssh keys). Documentation/config.txt | 14 ++++++++++---- builtin-config.c | 4 ++-- config.c | 2 +- git-compat-util.h | 2 ++ path.c | 2 +- t/t1300-repo-config.sh | 7 +++++++ wrapper.c | 7 +++++++ 7 files changed, 30 insertions(+), 8 deletions(-) diff --git a/Documentation/config.txt b/Documentation/config.txt index a1e36d7..09cbc71 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -8,6 +8,10 @@ is used to store the configuration for that repository, and fallback values for the `.git/config` file. The file `/etc/gitconfig` can be used to store a system-wide default configuration. +In case you want to store your per-user configuration in a directory +different to `$HOME`, you can use the `$GIT_HOME` environment variable +which has preference. + The configuration variables are used by both the git plumbing and the porcelains. The variables are divided into sections, wherein the fully qualified variable name of the variable itself is the last @@ -406,8 +410,9 @@ core.excludesfile:: In addition to '.gitignore' (per-directory) and '.git/info/exclude', git looks into this file for patterns of files which are not meant to be tracked. "{tilde}/" is expanded - to the value of `$HOME` and "{tilde}user/" to the specified user's - home directory. See linkgit:gitignore[5]. + to the value of `$GIT_HOME` (or `$HOME` if `$GIT_HOME` is not + set) and "{tilde}user/" to the specified user's home directory. See + linkgit:gitignore[5]. core.editor:: Commands such as `commit` and `tag` that lets you edit @@ -707,8 +712,9 @@ color.ui:: commit.template:: Specify a file to use as the template for new commit messages. - "{tilde}/" is expanded to the value of `$HOME` and "{tilde}user/" to the - specified user's home directory. + "{tilde}/" is expanded to the value of `$GIT_HOME` (or `$HOME` + if `$GIT_HOME` is not set) and "{tilde}user/" to the specified user's + home directory. diff.autorefreshindex:: When using 'git-diff' to compare with work tree diff --git a/builtin-config.c b/builtin-config.c index a2d656e..97284c6 100644 --- a/builtin-config.c +++ b/builtin-config.c @@ -146,7 +146,7 @@ static int get_value(const char *key_, const char *regex_) local = config_exclusive_filename; if (!local) { - const char *home = getenv("HOME"); + const char *home = git_custom_home(); local = repo_config = git_pathdup("config"); if (git_config_global() && home) global = xstrdup(mkpath("%s/.gitconfig", home)); @@ -326,7 +326,7 @@ int cmd_config(int argc, const char **argv, const char *unused_prefix) } if (use_global_config) { - char *home = getenv("HOME"); + const char *home = git_custom_home(); if (home) { char *user_config = xstrdup(mkpath("%s/.gitconfig", home)); config_exclusive_filename = user_config; diff --git a/config.c b/config.c index 37385ce..cb2add8 100644 --- a/config.c +++ b/config.c @@ -711,7 +711,7 @@ int git_config(config_fn_t fn, void *data) found += 1; } - home = getenv("HOME"); + home = git_custom_home(); if (git_config_global() && home) { char *user_config = xstrdup(mkpath("%s/.gitconfig", home)); if (!access(user_config, R_OK)) { diff --git a/git-compat-util.h b/git-compat-util.h index 5c59687..9f345da 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -465,4 +465,6 @@ void git_qsort(void *base, size_t nmemb, size_t size, */ int unlink_or_warn(const char *path); +const char *git_custom_home(void); + #endif diff --git a/path.c b/path.c index 2ec950b..6038a95 100644 --- a/path.c +++ b/path.c @@ -236,7 +236,7 @@ char *expand_user_path(const char *path) const char *username = path + 1; size_t username_len = first_slash - username; if (username_len == 0) { - const char *home = getenv("HOME"); + const char *home = git_custom_home(); strbuf_add(&user_path, home, strlen(home)); } else { struct passwd *pw = getpw_str(username, username_len); diff --git a/t/t1300-repo-config.sh b/t/t1300-repo-config.sh index 83b7294..d9818ab 100755 --- a/t/t1300-repo-config.sh +++ b/t/t1300-repo-config.sh @@ -18,6 +18,13 @@ EOF test_expect_success 'initial' 'cmp .git/config expect' +test_expect_success 'GIT_HOME' ' + GIT_HOME="`pwd`" && + export GIT_HOME && + git config --global core.penguin "little blue" && + cmp "$GIT_HOME"/.gitconfig expect +' + git config Core.Movie BadPhysics cat > expect << EOF diff --git a/wrapper.c b/wrapper.c index c9be140..b7f6649 100644 --- a/wrapper.c +++ b/wrapper.c @@ -305,3 +305,10 @@ int unlink_or_warn(const char *file) return rc; } +const char *git_custom_home(void) +{ + const char *val = getenv("GIT_HOME"); + if (!val) + val = getenv("HOME"); + return val; +} -- 1.6.5.2 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html