diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-06-25 11:48:54 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-06-25 11:48:54 -0700 |
commit | ada8710e634b4f9f686bd0477bd92b272ec60801 (patch) | |
tree | 858d045b56f90f939064c7bc27fdc2ae7516d66a | |
parent | Merge branch 'rs/pack-objects-no-unnecessary-realloc' into maint (diff) | |
parent | rerere: fix for merge.conflictstyle (diff) | |
download | tgif-ada8710e634b4f9f686bd0477bd92b272ec60801.tar.xz |
Merge branch 'fc/rerere-conflict-style' into maint
"git rerere forget" did not work well when merge.conflictstyle
was set to a non-default value.
* fc/rerere-conflict-style:
rerere: fix for merge.conflictstyle
-rw-r--r-- | builtin/rerere.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/builtin/rerere.c b/builtin/rerere.c index 4e51addb3e..98eb8c5404 100644 --- a/builtin/rerere.c +++ b/builtin/rerere.c @@ -60,6 +60,8 @@ int cmd_rerere(int argc, const char **argv, const char *prefix) argc = parse_options(argc, argv, prefix, options, rerere_usage, 0); + git_config(git_xmerge_config, NULL); + if (autoupdate == 1) flags = RERERE_AUTOUPDATE; if (autoupdate == 0) |