Commit ca61cecaa7d978cae3b4292c2f16001a71e77ec6

Stefan Sperling 2022-07-04T09:54:09

add -V option to 'got tag' usage string, and replace underscore with a hyphen

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/got/got.c b/got/got.c
index ce9c1f6..77e02b0 100644
--- a/got/got.c
+++ b/got/got.c
@@ -6909,7 +6909,7 @@ usage_tag(void)
 {
 	fprintf(stderr,
 	    "usage: %s tag [-c commit] [-r repository] [-l] "
-	        "[-m message] [-s signer_id] name\n",
+	        "[-m message] [-s signer-id] [-V] name\n",
 	        getprogname());
 	exit(1);
 }