diff options
Diffstat (limited to 'builtin/remote-fd.c')
-rw-r--r-- | builtin/remote-fd.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/builtin/remote-fd.c b/builtin/remote-fd.c index 08d7121b6..91dfe07e0 100644 --- a/builtin/remote-fd.c +++ b/builtin/remote-fd.c @@ -1,6 +1,9 @@ #include "builtin.h" #include "transport.h" +static const char usage_msg[] = + "git remote-fd <remote> <url>"; + /* * URL syntax: * 'fd::<inoutfd>[/<anything>]' Read/write socket pair @@ -57,7 +60,7 @@ int cmd_remote_fd(int argc, const char **argv, const char *prefix) char *end; if (argc != 3) - die("Expected two arguments"); + usage(usage_msg); input_fd = (int)strtoul(argv[2], &end, 10); |