Start the 2.46 cycle
[git.git] / builtin / update-server-info.c
blob1dc3971edeb3837a1479ce519197880d28ba7699
1 #include "builtin.h"
2 #include "config.h"
3 #include "gettext.h"
4 #include "parse-options.h"
5 #include "server-info.h"
7 static const char * const update_server_info_usage[] = {
8 "git update-server-info [-f | --force]",
9 NULL
12 int cmd_update_server_info(int argc, const char **argv, const char *prefix)
14 int force = 0;
15 struct option options[] = {
16 OPT__FORCE(&force, N_("update the info files from scratch"), 0),
17 OPT_END()
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);
26 return !!update_server_info(force);