From 1375d6c1072dc78f703b52ecc004facf5dba5bfb Mon Sep 17 00:00:00 2001 From: Pavlo Shchelokovskyy Date: Mon, 20 Sep 2021 22:27:43 +0300 Subject: [PATCH] Fix gitignore pattern for vault related files previous pattern ignored any file that started with 'vault_'. While not affecting changes to the vault_key_manager.py file that was already checked into the repository, this pattern effectively hides said file from many modern search tools (like ack, ag or ripgrep) that by default ignore files according to .gitignore patterns. This patch changes this pattern to ignore 'vault_*' files and directories only in the root of the repo. Change-Id: Id2095d9a401154435c346916e10df777b70d28dc --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 304efbff..9a659e95 100644 --- a/.gitignore +++ b/.gitignore @@ -28,7 +28,7 @@ pip-log.txt .stestr/ .venv cover -vault_* +/vault_* # Translations *.mo