diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-10-03 08:42:49 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-10-03 08:42:49 +0200 |
commit | 9257d3d7db17be306875f41b842716d275a3f76a (patch) | |
tree | a768e0be9e989fd68185e7521229e10f247f0c9a /submodule.c | |
parent | Merge branch 'sb/diff-color-move' (diff) | |
parent | submodule: correct error message for missing commits (diff) | |
download | git-9257d3d7db17be306875f41b842716d275a3f76a.tar.xz git-9257d3d7db17be306875f41b842716d275a3f76a.zip |
Merge branch 'sb/submodule-diff-header-fix'
Error message tweak.
* sb/submodule-diff-header-fix:
submodule: correct error message for missing commits
Diffstat (limited to 'submodule.c')
-rw-r--r-- | submodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/submodule.c b/submodule.c index 3e3ea11761..63e7094e16 100644 --- a/submodule.c +++ b/submodule.c @@ -503,7 +503,7 @@ static void show_submodule_header(struct diff_options *o, const char *path, if (add_submodule_odb(path)) { if (!message) - message = "(not initialized)"; + message = "(commits not present)"; goto output_header; } |