diff options
author | Matthieu Moy <Matthieu.Moy@imag.fr> | 2009-11-17 18:24:25 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-11-17 21:53:11 -0800 |
commit | 395de250d9d9762b8ac1ce98b297d60d0b5bd643 (patch) | |
tree | 6cd72d671e9ec56fdc87fa0c21484881b5a2ab00 /Documentation/config.txt | |
parent | 78d553b7d7b269bb22ebd8b1198657c37484a3a0 (diff) | |
download | git-395de250d9d9762b8ac1ce98b297d60d0b5bd643.tar.gz |
Expand ~ and ~user in core.excludesfile, commit.template
These config variables are parsed to substitute ~ and ~user with getpw
entries.
user_path() refactored into new function expand_user_path(), to allow
dynamically allocating the return buffer.
Original patch by Karl Chen, modified by Matthieu Moy, and further
amended by Junio C Hamano.
Signed-off-by: Karl Chen <quarl@quarl.org>
Signed-off-by: Matthieu Moy <Matthieu.Moy@imag.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation/config.txt')
-rw-r--r-- | Documentation/config.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Documentation/config.txt b/Documentation/config.txt index cd1781498e..958006ca76 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -380,7 +380,8 @@ Common unit suffixes of 'k', 'm', or 'g' are supported. 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. See + of files which are not meant to be tracked. "~/" and "~user/" + are expanded to the specified user's home directory. See linkgit:gitignore[5]. core.editor:: @@ -666,6 +667,7 @@ color.ui:: commit.template:: Specify a file to use as the template for new commit messages. + "~/" and "~user/" are expanded to the specified user's home directory. diff.autorefreshindex:: When using 'git-diff' to compare with work tree |