From 126edf20658456c0ca758435ce5adad6240e41a7 Mon Sep 17 00:00:00 2001 From: Patrick Steinhardt Date: Wed, 11 Nov 2020 13:16:05 +0100 Subject: gitignore: Ignore gitlab-shell data created by tests We've got some tests which set up gitlab-shell, which includes both writing a config file as well as writing the secret. We typically do so in the respective test's testdata directory, but that directory isn't generally ignored by our gitignore. Naturally enough, there's been a file which has been added by accident. Furthermore, we still have two gitkeep files around for the hooks directy, which isn't used anymore today. This commit thus removes all `testdata/gitlab-shell` files and adds it to our gitignore. The testdirectory is now created ad-hoc. --- .gitignore | 1 + 1 file changed, 1 insertion(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index ba024eabd..7c6b00486 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,7 @@ /internal/testhelper/testdata/data /**/testdata/gitaly-libexec /**/testdata/log +/**/testdata/**/gitlab-shell/ # Configuration and runtime data /*.toml -- cgit v1.2.3