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>2012-06-18 01:00:03 +0400
committerJunio C Hamano <gitster@pobox.com>2012-06-18 01:00:03 +0400
commitca4effd8bce5e0dfce7ce1425074475c8643b7f0 (patch)
tree9a88d0bb4eb0d9c37debb66303225f5e7d780065
parent121f71f0da1bc9a4e1e96be2c3e683191a82a354 (diff)
parent43bc2302706af6a3bb9266eea1bcb7071c54c8c6 (diff)
Merge branch 'js/maint-fast-export-mark-error' into maint
"git fast-export" did not give a readable error message when the same mark erroneously appeared twice in the --import-marks input.
-rw-r--r--builtin/fast-export.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/fast-export.c b/builtin/fast-export.c
index 19509ea754..ef7c012094 100644
--- a/builtin/fast-export.c
+++ b/builtin/fast-export.c
@@ -610,7 +610,7 @@ static void import_marks(char *input_file)
die ("Could not read blob %s", sha1_to_hex(sha1));
if (object->flags & SHOWN)
- error("Object %s already has a mark", sha1);
+ error("Object %s already has a mark", sha1_to_hex(sha1));
mark_object(object, mark);
if (last_idnum < mark)