Commit c6fc0acd8e42c67f7ea7b4b462395e1039815486

Stefan Sperling 2019-05-09T17:37:43

fix usage_commit()

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/got/got.c b/got/got.c
index e4684d9..bcea158 100644
--- a/got/got.c
+++ b/got/got.c
@@ -2075,7 +2075,7 @@ done:
 __dead static void
 usage_commit(void)
 {
-	fprintf(stderr, "usage: %s commit file-path\n", getprogname());
+	fprintf(stderr, "usage: %s commit [-m msg] file-path\n", getprogname());
 	exit(1);
 }