stagit
static git repository generator
git clone https://9o.is/git/stagit.git
commit 6bfbd3e3ead23969ac85be5f3cf91a9e8a8e16e1 parent 4d13a18d5ccf2daced931ae6b8d01d3df1fff2fa Author: Hiltjo Posthuma <hiltjo@codemadness.org> Date: Tue, 16 Aug 2022 13:17:00 +0200 prefix usage with the common prefix "usage: " Diffstat:
| M | stagit-index.c | | | 2 | +- |
| M | stagit.c | | | 2 | +- |
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/stagit-index.c b/stagit-index.c @@ -179,7 +179,7 @@ main(int argc, char *argv[]) int i, ret = 0; if (argc < 2) { - fprintf(stderr, "%s [repodir...]\n", argv[0]); + fprintf(stderr, "usage: %s [repodir...]\n", argv[0]); return 1; } diff --git a/stagit.c b/stagit.c @@ -1184,7 +1184,7 @@ writerefs(FILE *fp) void usage(char *argv0) { - fprintf(stderr, "%s [-c cachefile | -l commits] " + fprintf(stderr, "usage: %s [-c cachefile | -l commits] " "[-u baseurl] repodir\n", argv0); exit(1); }