Skip to content

Commit 94c8cca

Browse files
Oblomovgitster
authored andcommitted
rev-parse: --local-env-vars option
This prints the list of repo-local environment variables. Signed-off-by: Giuseppe Bilotta <giuseppe.bilotta@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 48a7c1c commit 94c8cca

2 files changed

Lines changed: 13 additions & 0 deletions

File tree

Documentation/git-rev-parse.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,12 @@ shown. If the pattern does not contain a globbing character (`?`,
149149
--is-bare-repository::
150150
When the repository is bare print "true", otherwise "false".
151151

152+
--local-env-vars::
153+
List the GIT_* environment variables that are local to the
154+
repository (e.g. GIT_DIR or GIT_WORK_TREE, but not GIT_EDITOR).
155+
Only the names of the variables are listed, not their value,
156+
even if they are set.
157+
152158
--short::
153159
--short=number::
154160
Instead of outputting the full SHA1 values of object names try to

builtin-rev-parse.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -455,6 +455,13 @@ int cmd_rev_parse(int argc, const char **argv, const char *prefix)
455455
if (argc > 1 && !strcmp("--sq-quote", argv[1]))
456456
return cmd_sq_quote(argc - 2, argv + 2);
457457

458+
if (argc == 2 && !strcmp("--local-env-vars", argv[1])) {
459+
int i;
460+
for (i = 0; local_repo_env[i]; i++)
461+
printf("%s\n", local_repo_env[i]);
462+
return 0;
463+
}
464+
458465
if (argc > 1 && !strcmp("-h", argv[1]))
459466
usage(builtin_rev_parse_usage);
460467

0 commit comments

Comments
 (0)