Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2016-05-24 00:54:35 +0300
committerJunio C Hamano <gitster@pobox.com>2016-05-24 00:54:35 +0300
commit53c4b3ed0e4c43fcd95473733b61e560ee21b4bc (patch)
tree744a5242a62b998b58a1aa8702603cf47b6d76e2 /builtin/diff.c
parentfa4f29b8a8febd454fb589f96afa014d73f157c1 (diff)
parent90a78b83e0b812d1f42501a54372720def4ddd84 (diff)
Merge branch 'ar/diff-args-osx-precompose'
Many commands normalize command line arguments from NFD to NFC variant of UTF-8 on OSX, but commands in the "diff" family did not, causing "git diff $path" to complain that no such path is known to Git. They have been taught to do the normalization. * ar/diff-args-osx-precompose: diff: run arguments through precompose_argv
Diffstat (limited to 'builtin/diff.c')
-rw-r--r--builtin/diff.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/diff.c b/builtin/diff.c
index 343c6b8f25..b7a9405d9f 100644
--- a/builtin/diff.c
+++ b/builtin/diff.c
@@ -320,6 +320,7 @@ int cmd_diff(int argc, const char **argv, const char *prefix)
gitmodules_config();
init_diff_ui_defaults();
git_config(git_diff_ui_config, NULL);
+ precompose_argv(argc, argv);
init_revisions(&rev, prefix);