aboutsummaryrefslogtreecommitdiff
path: root/builtin/checkout.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-12-05 15:25:12 -0800
committerJunio C Hamano <gitster@pobox.com>2011-12-05 15:25:12 -0800
commit9ef569791f967c1559b498d8f77a2c42a14be2ed (patch)
treeafd2b29be852150fd4f74d57e257ab47729ca86c /builtin/checkout.c
parentce8781e8ab66fb90fb7baf8d953a4582a06571a7 (diff)
parentfc001b526c42e5fb776340136a2fb247e391a61b (diff)
downloadgit-9ef569791f967c1559b498d8f77a2c42a14be2ed.tar.gz
git-9ef569791f967c1559b498d8f77a2c42a14be2ed.tar.xz
Merge branch 'nd/maint-ignore-exclude'
* 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 2a8077242..51840b978 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);