diff options
-rw-r--r-- | builtin/reflog.c | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/builtin/reflog.c b/builtin/reflog.c index 25313d504a..458764400b 100644 --- a/builtin/reflog.c +++ b/builtin/reflog.c @@ -6,14 +6,13 @@ #include "reflog.h" #define BUILTIN_REFLOG_EXPIRE_USAGE \ - N_("git reflog expire [--expire=<time>] " \ - "[--expire-unreachable=<time>] " \ - "[--rewrite] [--updateref] [--stale-fix] [--dry-run | -n] " \ - "[--verbose] [--all] <refs>...") + N_("git reflog expire [--expire=<time>] [--expire-unreachable=<time>]\n" \ + " [--rewrite] [--updateref] [--stale-fix]\n" \ + " [--dry-run | -n] [--verbose] [--all [--single-worktree] | <refs>...]") #define BUILTIN_REFLOG_DELETE_USAGE \ - N_("git reflog delete [--rewrite] [--updateref] " \ - "[--dry-run | -n] [--verbose] <refs>...") + N_("git reflog delete [--rewrite] [--updateref]\n" \ + " [--dry-run | -n] [--verbose] <ref>@{<specifier>}...") #define BUILTIN_REFLOG_EXISTS_USAGE \ N_("git reflog exists <ref>") |