builtin / update-server-info.con commit Merge branch 'jk/maint-config-alias-fix' into maint (1c6e351)
   1#include "cache.h"
   2#include "builtin.h"
   3#include "parse-options.h"
   4
   5static const char * const update_server_info_usage[] = {
   6        "git update-server-info [--force]",
   7        NULL
   8};
   9
  10int cmd_update_server_info(int argc, const char **argv, const char *prefix)
  11{
  12        int force = 0;
  13        struct option options[] = {
  14                OPT__FORCE(&force, "update the info files from scratch"),
  15                OPT_END()
  16        };
  17
  18        argc = parse_options(argc, argv, prefix, options,
  19                             update_server_info_usage, 0);
  20        if (argc > 0)
  21                usage_with_options(update_server_info_usage, options);
  22
  23        return !!update_server_info(force);
  24}