|
5 | 5 | #include "worktree.h"
|
6 | 6 | #include "reflog.h"
|
7 | 7 |
|
| 8 | +#define BUILTIN_REFLOG_EXPIRE_USAGE \ |
| 9 | + N_("git reflog expire [--expire=<time>] " \ |
| 10 | + "[--expire-unreachable=<time>] " \ |
| 11 | + "[--rewrite] [--updateref] [--stale-fix] [--dry-run | -n] " \ |
| 12 | + "[--verbose] [--all] <refs>...") |
| 13 | + |
| 14 | +#define BUILTIN_REFLOG_DELETE_USAGE \ |
| 15 | + N_("git reflog delete [--rewrite] [--updateref] " \ |
| 16 | + "[--dry-run | -n] [--verbose] <refs>...") |
| 17 | + |
| 18 | +#define BUILTIN_REFLOG_EXISTS_USAGE \ |
| 19 | + N_("git reflog exists <ref>") |
| 20 | + |
| 21 | +static const char *const reflog_expire_usage[] = { |
| 22 | + BUILTIN_REFLOG_EXPIRE_USAGE, |
| 23 | + NULL |
| 24 | +}; |
| 25 | + |
| 26 | +static const char *const reflog_delete_usage[] = { |
| 27 | + BUILTIN_REFLOG_DELETE_USAGE, |
| 28 | + NULL |
| 29 | +}; |
| 30 | + |
8 | 31 | static const char reflog_exists_usage[] =
|
9 |
| -N_("git reflog exists <ref>"); |
| 32 | + BUILTIN_REFLOG_EXISTS_USAGE; |
10 | 33 |
|
11 | 34 | static timestamp_t default_reflog_expire;
|
12 | 35 | static timestamp_t default_reflog_expire_unreachable;
|
@@ -147,14 +170,6 @@ static void set_reflog_expiry_param(struct cmd_reflog_expire_cb *cb, const char
|
147 | 170 | cb->expire_unreachable = default_reflog_expire_unreachable;
|
148 | 171 | }
|
149 | 172 |
|
150 |
| -static const char * reflog_expire_usage[] = { |
151 |
| - N_("git reflog expire [--expire=<time>] " |
152 |
| - "[--expire-unreachable=<time>] " |
153 |
| - "[--rewrite] [--updateref] [--stale-fix] [--dry-run | -n] " |
154 |
| - "[--verbose] [--all] <refs>..."), |
155 |
| - NULL |
156 |
| -}; |
157 |
| - |
158 | 173 | static int expire_unreachable_callback(const struct option *opt,
|
159 | 174 | const char *arg,
|
160 | 175 | int unset)
|
@@ -304,12 +319,6 @@ static int cmd_reflog_expire(int argc, const char **argv, const char *prefix)
|
304 | 319 | return status;
|
305 | 320 | }
|
306 | 321 |
|
307 |
| -static const char * reflog_delete_usage[] = { |
308 |
| - N_("git reflog delete [--rewrite] [--updateref] " |
309 |
| - "[--dry-run | -n] [--verbose] <refs>..."), |
310 |
| - NULL |
311 |
| -}; |
312 |
| - |
313 | 322 | static int cmd_reflog_delete(int argc, const char **argv, const char *prefix)
|
314 | 323 | {
|
315 | 324 | int i, status = 0;
|
|
0 commit comments