mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-17 08:14:42 +04:00
Adds whitelist for GIT_* env vars containing only GIT_SSH
This commit is contained in:
parent
9b6fb149f9
commit
e3cf0975f9
1 changed files with 4 additions and 1 deletions
|
|
@ -76,8 +76,11 @@ def no_git_env():
|
||||||
# while running pre-commit hooks in submodules.
|
# while running pre-commit hooks in submodules.
|
||||||
# GIT_DIR: Causes git clone to clone wrong thing
|
# GIT_DIR: Causes git clone to clone wrong thing
|
||||||
# GIT_INDEX_FILE: Causes 'error invalid object ...' during commit
|
# GIT_INDEX_FILE: Causes 'error invalid object ...' during commit
|
||||||
|
|
||||||
|
# list of explicitly whitelisted variables
|
||||||
|
allowed_git_envs = ['GIT_SSH']
|
||||||
return {
|
return {
|
||||||
k: v for k, v in os.environ.items() if not k.startswith('GIT_')
|
k: v for k, v in os.environ.items() if not k.startswith('GIT_') or k in allowed_git_envs
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue