diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2016-04-20 08:38:03 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-04-20 09:11:36 -0700 |
commit | 36b14370dbafbe6682ea6b21c8de012253bff451 (patch) | |
tree | 14357d13abcfa7403dfb3c140052e5001a01775b /builtin | |
parent | e46579643d56162299b1756b70d418005351b256 (diff) | |
download | git-36b14370dbafbe6682ea6b21c8de012253bff451.tar.gz |
replace --edit: respect core.editorjs/replace-edit-use-editor-configuration
We simply need to read the config, is all.
This fixes https://github.com/git-for-windows/git/issues/733
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/replace.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/replace.c b/builtin/replace.c index 6b3c469a33..15bec80b7d 100644 --- a/builtin/replace.c +++ b/builtin/replace.c @@ -440,6 +440,7 @@ int cmd_replace(int argc, const char **argv, const char *prefix) }; check_replace_refs = 0; + git_config(git_default_config, NULL); argc = parse_options(argc, argv, prefix, options, git_replace_usage, 0); |