Commit 78817826917980c893186ca523093b97061f40d5

Stefan Sperling 2022-07-04T09:57:16

add -v option to 'got tag' usage string

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/got/got.c b/got/got.c
index 2f855d5..74be945 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] [-V] name\n",
+	        "[-m message] [-s signer-id] [-v] [-V] name\n",
 	        getprogname());
 	exit(1);
 }