summaryrefslogtreecommitdiff
path: root/builtin/fast-export.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-04-12 18:48:38 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-04-12 18:48:38 (GMT)
commit7f20008d14e3eececdc90c75d3a86ee6c250cb67 (patch)
tree3a6d3d114ba58c45496cb456e01cd5945c3b1b34 /builtin/fast-export.c
parent5234b41f68ca1ab788513fdc059f9f2e01fd3f6e (diff)
parent04a74b6cfa5ef4870263f84ac94a488d9f2ef14a (diff)
downloadgit-7f20008d14e3eececdc90c75d3a86ee6c250cb67.zip
git-7f20008d14e3eececdc90c75d3a86ee6c250cb67.tar.gz
git-7f20008d14e3eececdc90c75d3a86ee6c250cb67.tar.bz2
Merge branch 'maint-1.8.1' into maint
* maint-1.8.1: fast-export: fix argument name in error messages Documentation: distinguish between ref and offset deltas in pack-format
Diffstat (limited to 'builtin/fast-export.c')
-rw-r--r--builtin/fast-export.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/fast-export.c b/builtin/fast-export.c
index 77dffd1..ad9d0c4 100644
--- a/builtin/fast-export.c
+++ b/builtin/fast-export.c
@@ -43,7 +43,7 @@ static int parse_opt_signed_tag_mode(const struct option *opt,
else if (!strcmp(arg, "strip"))
signed_tag_mode = STRIP;
else
- return error("Unknown signed-tag mode: %s", arg);
+ return error("Unknown signed-tags mode: %s", arg);
return 0;
}
@@ -416,7 +416,7 @@ static void handle_tag(const char *name, struct tag *tag)
switch(signed_tag_mode) {
case ABORT:
die ("Encountered signed tag %s; use "
- "--signed-tag=<mode> to handle it.",
+ "--signed-tags=<mode> to handle it.",
sha1_to_hex(tag->object.sha1));
case WARN:
warning ("Exporting signed tag %s",