| 48 | } |
| 49 | |
| 50 | static int shared_callback(const struct option *opt, const char *arg, int unset) |
| 51 | { |
| 52 | BUG_ON_OPT_NEG(unset); |
| 53 | *((int *) opt->value) = (arg) ? git_config_perm("arg", arg) : PERM_GROUP; |
| 54 | return 0; |
| 55 | } |
| 56 | |
| 57 | static const char *const init_db_usage[] = { |
| 58 | N_("git init [-q | --quiet] [--bare] [--template=<template-directory>]\n" |
nothing calls this directly
no test coverage detected