зеркало из https://github.com/microsoft/git.git
var: Don't require to be in a git repository.
git var works fine even when not called in a git repository. So don't require it. This will make it possible to remove this pre-condition for some other git commands as well. Signed-off-by: Frank Lichtenheld <frank@lichtenheld.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
1658c6149a
Коммит
2fba8366ed
3
var.c
3
var.c
|
@ -51,11 +51,12 @@ static int show_config(const char *var, const char *value)
|
|||
int main(int argc, char **argv)
|
||||
{
|
||||
const char *val;
|
||||
int nongit;
|
||||
if (argc != 2) {
|
||||
usage(var_usage);
|
||||
}
|
||||
|
||||
setup_git_directory();
|
||||
setup_git_directory_gently(&nongit);
|
||||
val = NULL;
|
||||
|
||||
if (strcmp(argv[1], "-l") == 0) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче