diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-11-28 10:41:43 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-11-28 10:41:43 -0800 |
commit | f44054c82f4199ccff14f472e4fd7904b0db8ff5 (patch) | |
tree | a34aedc1fb8a8f919bb7ce86a91ed9f0b6d43848 /builtin/merge.c | |
parent | 017d1e134545db0d162908f3538077eaa1f34fb6 (diff) | |
parent | fc001b526c42e5fb776340136a2fb247e391a61b (diff) | |
download | git-f44054c82f4199ccff14f472e4fd7904b0db8ff5.tar.gz |
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/merge.c')
-rw-r--r-- | builtin/merge.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/merge.c b/builtin/merge.c index 2870a6af6f..1387376248 100644 --- a/builtin/merge.c +++ b/builtin/merge.c @@ -775,7 +775,7 @@ int checkout_fast_forward(const unsigned char *head, const unsigned char *remote memset(&t, 0, sizeof(t)); memset(&dir, 0, sizeof(dir)); dir.flags |= DIR_SHOW_IGNORED; - dir.exclude_per_dir = ".gitignore"; + setup_standard_excludes(&dir); opts.dir = &dir; opts.head_idx = 1; |