summaryrefslogtreecommitdiffstats
path: root/debian/.gitignore
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 /debian/.gitignore
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 'debian/.gitignore')
-rw-r--r--debian/.gitignore28
1 files changed, 14 insertions, 14 deletions
diff --git a/debian/.gitignore b/debian/.gitignore
index e8c2e82a..ab384182 100644
--- a/debian/.gitignore
+++ b/debian/.gitignore
@@ -1,14 +1,14 @@
-tmp/
-libnotmuch-dev/
-libnotmuch*/
-notmuch-emacs/
-notmuch/
-notmuch-dbg/
-notmuch-mutt/
-notmuch-vim/
-ruby-notmuch/
-python*-notmuch/
-*.debhelper
-*.debhelper.log
-*.substvars
-files
+/tmp/
+/libnotmuch-dev/
+/libnotmuch*/
+/notmuch-emacs/
+/notmuch/
+/notmuch-dbg/
+/notmuch-mutt/
+/notmuch-vim/
+/ruby-notmuch/
+/python*-notmuch/
+/*.debhelper
+/*.debhelper.log
+/*.substvars
+/files