summaryrefslogtreecommitdiffstats
path: root/performance-test
diff options
context:
space:
mode:
authorVladimir Panteleev <notmuch@thecybershadow.net>2017-08-17 00:41:10 +0000
committerDavid Bremner <david@tethera.net>2017-08-18 19:42:35 -0300
commitca4688e103c644fa383108a79668e8e0b4dbe262 (patch)
treeb837ca32d33cd5cbaab5792571bb9439e33e51af /performance-test
parent4d44976135ec69316f3f681cf7083e5188ab9d70 (diff)
Use rooted paths in .gitignore files
A leading / in paths in a .gitignore file matches the beginning of the path, meaning that for patterns without slashes, git will match files only in the current directory as opposed to in any subdirectory. Prefix relevant paths with / in .gitignore files, to prevent accidentally ignoring files in subdirectories and possibly slightly improve the performance of "git status".
Diffstat (limited to 'performance-test')
-rw-r--r--performance-test/.gitignore8
-rw-r--r--performance-test/download/.gitignore4
2 files changed, 6 insertions, 6 deletions
diff --git a/performance-test/.gitignore b/performance-test/.gitignore
index f3f9be41..8a5dabf5 100644
--- a/performance-test/.gitignore
+++ b/performance-test/.gitignore
@@ -1,4 +1,4 @@
-tmp.*/
-log.*/
-corpus/
-notmuch.cache.*/
+/tmp.*/
+/log.*/
+/corpus/
+/notmuch.cache.*/
diff --git a/performance-test/download/.gitignore b/performance-test/download/.gitignore
index 7b092346..5c356204 100644
--- a/performance-test/download/.gitignore
+++ b/performance-test/download/.gitignore
@@ -1,2 +1,2 @@
-*.tar.gz
-*.tar.xz
+/*.tar.gz
+/*.tar.xz