Thiago Farina schrieb: > @@ -11,6 +11,12 @@ > > static const char *bundle_usage="git bundle (create <bundle> <git rev-list args> | verify <bundle> | list-heads <bundle> [refname]... | unbundle <bundle> [refname]... )"; Is this variable still used? Shouldn't it be removed? > +static const char builtin_bundle_usage[] = "\ > + git bundle create <file> <git-rev-list args>\n\ > + git bundle verify <file>\n\ > + git bundle list-heads <file> [refname...]\n\ > + git bundle unbundle <file> [refname...]"; You indent the usage text. Do other commands do that, too? If you resend, it may be worth using this style: static const char builtin_bundle_usage[] = "git bundle create <file> <git-rev-list args>\n" "git bundle verify <file>\n" ... i.e. not to use backslash-at-eol. > - if (argc < 3) > - usage(bundle_usage); > + if (argc < 3) > + usage(builtin_bundle_usage); This re-indentation is an accident, isn't it? -- Hannes -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html