summaryrefslogtreecommitdiff
path: root/dir.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-05-19 20:17:50 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-05-19 20:17:51 (GMT)
commit20cf8b548ebd7d5ec98729b4bb8ae5af435a22ff (patch)
tree5744fa6cf8ffa26600bd154c9f0023bcd364bc10 /dir.c
parentd0c692263f453f267ddd82b90b1a2fcff9d45f5f (diff)
parent099d2d86a8e17218aca31bf7c4070a820baf4baa (diff)
downloadgit-20cf8b548ebd7d5ec98729b4bb8ae5af435a22ff.zip
git-20cf8b548ebd7d5ec98729b4bb8ae5af435a22ff.tar.gz
git-20cf8b548ebd7d5ec98729b4bb8ae5af435a22ff.tar.bz2
Merge branch 'jc/gitignore-precedence'
core.excludesfile (defaulting to $XDG_HOME/git/ignore) is supposed to be overridden by repository-specific .git/info/exclude file, but the order was swapped from the beginning. This belatedly fixes it. * jc/gitignore-precedence: ignore: info/exclude should trump core.excludesfile
Diffstat (limited to 'dir.c')
-rw-r--r--dir.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/dir.c b/dir.c
index 0c38d86..4183acc 100644
--- a/dir.c
+++ b/dir.c
@@ -1673,13 +1673,17 @@ void setup_standard_excludes(struct dir_struct *dir)
const char *path;
dir->exclude_per_dir = ".gitignore";
- path = git_path("info/exclude");
+
+ /* core.excludefile defaulting to $XDG_HOME/git/ignore */
if (!excludes_file)
excludes_file = xdg_config_home("ignore");
- if (!access_or_warn(path, R_OK, 0))
- add_excludes_from_file(dir, path);
if (excludes_file && !access_or_warn(excludes_file, R_OK, 0))
add_excludes_from_file(dir, excludes_file);
+
+ /* per repository user preference */
+ path = git_path("info/exclude");
+ if (!access_or_warn(path, R_OK, 0))
+ add_excludes_from_file(dir, path);
}
int remove_path(const char *name)