]> git.ipfire.org Git - thirdparty/git.git/blob - builtin/update-server-info.c
The seventh batch
[thirdparty/git.git] / builtin / update-server-info.c
1 #include "builtin.h"
2 #include "config.h"
3 #include "gettext.h"
4 #include "parse-options.h"
5 #include "server-info.h"
6
7 static const char * const update_server_info_usage[] = {
8 "git update-server-info [-f | --force]",
9 NULL
10 };
11
12 int cmd_update_server_info(int argc, const char **argv, const char *prefix)
13 {
14 int force = 0;
15 struct option options[] = {
16 OPT__FORCE(&force, N_("update the info files from scratch"), 0),
17 OPT_END()
18 };
19
20 git_config(git_default_config, NULL);
21 argc = parse_options(argc, argv, prefix, options,
22 update_server_info_usage, 0);
23 if (argc > 0)
24 usage_with_options(update_server_info_usage, options);
25
26 return !!update_server_info(force);
27 }