summaryrefslogtreecommitdiff
path: root/builtin/checkout.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-11-28 18:41:43 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-11-28 18:41:43 (GMT)
commitf44054c82f4199ccff14f472e4fd7904b0db8ff5 (patch)
treea34aedc1fb8a8f919bb7ce86a91ed9f0b6d43848 /builtin/checkout.c
parent017d1e134545db0d162908f3538077eaa1f34fb6 (diff)
parentfc001b526c42e5fb776340136a2fb247e391a61b (diff)
downloadgit-f44054c82f4199ccff14f472e4fd7904b0db8ff5.zip
git-f44054c82f4199ccff14f472e4fd7904b0db8ff5.tar.gz
git-f44054c82f4199ccff14f472e4fd7904b0db8ff5.tar.bz2
Merge branch 'nd/maint-ignore-exclude' into nd/ignore-might-be-precious
* nd/maint-ignore-exclude: checkout,merge: loosen overwriting untracked file check based on info/exclude
Diffstat (limited to 'builtin/checkout.c')
-rw-r--r--builtin/checkout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/checkout.c b/builtin/checkout.c
index 2a80772..51840b9 100644
--- a/builtin/checkout.c
+++ b/builtin/checkout.c
@@ -411,7 +411,7 @@ static int merge_working_tree(struct checkout_opts *opts,
topts.fn = twoway_merge;
topts.dir = xcalloc(1, sizeof(*topts.dir));
topts.dir->flags |= DIR_SHOW_IGNORED;
- topts.dir->exclude_per_dir = ".gitignore";
+ setup_standard_excludes(topts.dir);
tree = parse_tree_indirect(old->commit ?
old->commit->object.sha1 :
EMPTY_TREE_SHA1_BIN);