From 4ff887acee0a2bf3ff5127fb4912fd23decb1e25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reynir=20Bj=C3=B6rnsson?= Date: Fri, 4 Oct 2024 13:14:38 +0200 Subject: [PATCH] Explain remote is including branch --- bin/push.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/push.ml b/bin/push.ml index 831afdb..2ecad08 100644 --- a/bin/push.ml +++ b/bin/push.ml @@ -36,7 +36,7 @@ let specification = [ ("--message", Arg.Set_string message, "The commit message") ; ("--email", Arg.Set_string email, "The email used to craft the commit") - ; ("-r", Arg.Set_string remote, "The Git repository") + ; ("-r", Arg.Set_string remote, "The Git repository including #branch, e.g. " ^ !remote) ; ("--author", Arg.Set_string author, "The Git commit author") ; ("--host", Arg.Set_string host, "The host where the blog is available") ]