Skip to content

Commit 67d454f

Browse files
raalkmlgitster
authored andcommitted
Add an option to specify a file to config builtin
There are (really!) systems where using environment variables is very cumbersome (yes, Windows, it has problems unsetting them). Besides this form is shorter. Signed-off-by: Alex Riesen <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 10861be commit 67d454f

File tree

2 files changed

+24
-14
lines changed

2 files changed

+24
-14
lines changed

Documentation/git-config.txt

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ git-config - Get and set repository or global options
99
SYNOPSIS
1010
--------
1111
[verse]
12-
'git-config' [--system | --global] [type] [-z|--null] name [value [value_regex]]
13-
'git-config' [--system | --global] [type] --add name value
14-
'git-config' [--system | --global] [type] --replace-all name [value [value_regex]]
15-
'git-config' [--system | --global] [type] [-z|--null] --get name [value_regex]
16-
'git-config' [--system | --global] [type] [-z|--null] --get-all name [value_regex]
17-
'git-config' [--system | --global] [type] [-z|--null] --get-regexp name_regex [value_regex]
18-
'git-config' [--system | --global] --unset name [value_regex]
19-
'git-config' [--system | --global] --unset-all name [value_regex]
20-
'git-config' [--system | --global] --rename-section old_name new_name
21-
'git-config' [--system | --global] --remove-section name
22-
'git-config' [--system | --global] [-z|--null] -l | --list
12+
'git-config' [--system | --global | [-f|--file] config-file] [type] [-z|--null] name [value [value_regex]]
13+
'git-config' [--system | --global | [-f|--file] config-file] [type] --add name value
14+
'git-config' [--system | --global | [-f|--file] config-file] [type] --replace-all name [value [value_regex]]
15+
'git-config' [--system | --global | [-f|--file] config-file] [type] [-z|--null] --get name [value_regex]
16+
'git-config' [--system | --global | [-f|--file] config-file] [type] [-z|--null] --get-all name [value_regex]
17+
'git-config' [--system | --global | [-f|--file] config-file] [type] [-z|--null] --get-regexp name_regex [value_regex]
18+
'git-config' [--system | --global | [-f|--file] config-file] --unset name [value_regex]
19+
'git-config' [--system | --global | [-f|--file] config-file] --unset-all name [value_regex]
20+
'git-config' [--system | --global | [-f|--file] config-file] --rename-section old_name new_name
21+
'git-config' [--system | --global | [-f|--file] config-file] --remove-section name
22+
'git-config' [--system | --global | [-f|--file] config-file] [-z|--null] -l | --list
2323

2424
DESCRIPTION
2525
-----------
@@ -42,8 +42,8 @@ no checks or transformations are performed on the value.
4242

4343
This command will fail if:
4444

45-
. The .git/config file is invalid,
46-
. Can not write to .git/config,
45+
. The config file is invalid,
46+
. Can not write to the config file,
4747
. no section was provided,
4848
. the section or key is invalid,
4949
. you try to unset an option which does not exist,
@@ -93,6 +93,9 @@ rather than from all available files.
9393
+
9494
See also <<FILES>>.
9595

96+
-f config-file, --file config-file::
97+
Use the given config file instead of the one specified by GIT_CONFIG.
98+
9699
--remove-section::
97100
Remove the given section from the configuration file.
98101

builtin-config.c

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include "cache.h"
33

44
static const char git_config_set_usage[] =
5-
"git-config [ --global | --system ] [ --bool | --int ] [ -z | --null ] [--get | --get-all | --get-regexp | --replace-all | --add | --unset | --unset-all] name [value [value_regex]] | --rename-section old_name new_name | --remove-section name | --list";
5+
"git-config [ --global | --system | [ -f | --file ] config-file ] [ --bool | --int ] [ -z | --null ] [--get | --get-all | --get-regexp | --replace-all | --add | --unset | --unset-all] name [value [value_regex]] | --rename-section old_name new_name | --remove-section name | --list";
66

77
static char *key;
88
static regex_t *key_regexp;
@@ -186,6 +186,13 @@ int cmd_config(int argc, const char **argv, const char *prefix)
186186
}
187187
else if (!strcmp(argv[1], "--system"))
188188
setenv(CONFIG_ENVIRONMENT, ETC_GITCONFIG, 1);
189+
else if (!strcmp(argv[1], "--file") || !strcmp(argv[1], "-f")) {
190+
if (argc < 3)
191+
usage(git_config_set_usage);
192+
setenv(CONFIG_ENVIRONMENT, argv[2], 1);
193+
argc--;
194+
argv++;
195+
}
189196
else if (!strcmp(argv[1], "--null") || !strcmp(argv[1], "-z")) {
190197
term = '\0';
191198
delim = '\n';

0 commit comments

Comments
 (0)