diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-07-18 12:20:34 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-07-18 12:20:34 -0700 |
commit | 3c5b6ee92e3f0a9059cd758ed32e71e41a1a55a7 (patch) | |
tree | a3064466a914129ff6ca01f108315139017ca824 /dir.c | |
parent | Merge branch 'js/rebase-recreate-merge' (diff) | |
parent | dir.c: fix typos in core.excludesfile comment (diff) | |
download | tgif-3c5b6ee92e3f0a9059cd758ed32e71e41a1a55a7.tar.xz |
Merge branch 'tz/exclude-doc-smallfixes'
Doc updates.
* tz/exclude-doc-smallfixes:
dir.c: fix typos in core.excludesfile comment
gitignore.txt: clarify default core.excludesfile path
Diffstat (limited to 'dir.c')
-rw-r--r-- | dir.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2498,7 +2498,7 @@ void setup_standard_excludes(struct dir_struct *dir) { dir->exclude_per_dir = ".gitignore"; - /* core.excludefile defaulting to $XDG_HOME/git/ignore */ + /* core.excludesfile defaulting to $XDG_CONFIG_HOME/git/ignore */ if (!excludes_file) excludes_file = xdg_config_home("ignore"); if (excludes_file && !access_or_warn(excludes_file, R_OK, 0)) |