You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
432 B
24 lines
432 B
20 years ago
|
#include "cache.h"
|
||
|
|
||
|
static const char update_server_info_usage[] =
|
||
|
"git-update-server-info [--force]";
|
||
|
|
||
|
int main(int ac, char **av)
|
||
|
{
|
||
|
int i;
|
||
|
int force = 0;
|
||
|
for (i = 1; i < ac; i++) {
|
||
|
if (av[i][0] == '-') {
|
||
|
if (!strcmp("--force", av[i]) ||
|
||
|
!strcmp("-f", av[i]))
|
||
|
force = 1;
|
||
|
else
|
||
|
usage(update_server_info_usage);
|
||
|
}
|
||
|
}
|
||
|
if (i != ac)
|
||
|
usage(update_server_info_usage);
|
||
|
|
||
|
return !!update_server_info(force);
|
||
|
}
|