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]",
12 int cmd_update_server_info(int argc
, const char **argv
, const char *prefix
)
15 struct option options
[] = {
16 OPT__FORCE(&force
, N_("update the info files from scratch"), 0),
20 git_config(git_default_config
, NULL
);
21 argc
= parse_options(argc
, argv
, prefix
, options
,
22 update_server_info_usage
, 0);
24 usage_with_options(update_server_info_usage
, options
);
26 return !!update_server_info(force
);