X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=builtin-revert.c;h=27881e94937dd79b9a0524eb2d9770427ec4f4fb;hb=5521883490e85f4d973141972cf16f89a79f1979;hp=f3d452418c25b0d95a911a050f75ba190d6513c1;hpb=1864265c4d9afa374b27836ff0a3b3eb40144552;p=git.git diff --git a/builtin-revert.c b/builtin-revert.c index f3d452418..27881e949 100644 --- a/builtin-revert.c +++ b/builtin-revert.c @@ -24,12 +24,12 @@ */ static const char * const revert_usage[] = { - "git-revert [options] ", + "git revert [options] ", NULL }; static const char * const cherry_pick_usage[] = { - "git-cherry-pick [options] ", + "git cherry-pick [options] ", NULL }; @@ -180,7 +180,7 @@ static void set_author_ident_env(const char *message) email++; timestamp = strchr(email, '>'); if (!timestamp) - die ("Could not extract author email from %s", + die ("Could not extract author time from %s", sha1_to_hex(commit->object.sha1)); *timestamp = '\0'; for (timestamp++; *timestamp && isspace(*timestamp);