diff options
author | David Robillard <d@drobilla.net> | 2025-01-19 20:28:09 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2025-01-19 20:42:08 -0500 |
commit | d969f9df4ce82739b14404824cde55ba60f3bf5a (patch) | |
tree | 11184a5f55054b7f25c0f0c93db513893e83216f | |
parent | 36808fcf94c0cbd3552e3129f176c1df6f9f4a3b (diff) | |
download | serd-d969f9df4ce82739b14404824cde55ba60f3bf5a.tar.gz serd-d969f9df4ce82739b14404824cde55ba60f3bf5a.tar.bz2 serd-d969f9df4ce82739b14404824cde55ba60f3bf5a.zip |
Clean up gitignore file
Strengthen patterns to match only relative to this directory where
possible (with a leading slash), and move those that match in any child to a
separate block.
-rw-r--r-- | .gitignore | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -1,9 +1,11 @@ # Copyright 2017-2025 David Robillard <d@drobilla.net> # SPDX-License-Identifier: 0BSD OR ISC -.meson-subproject-wrap-hash.txt -__pycache__ -build/ -subprojects/packagecache/ -subprojects/sphinxygen-1.0.10/ -subprojects/sphinxygen/ +/.meson-subproject-wrap-hash.txt +/build/ +/subprojects/packagecache/ +/subprojects/sphinxygen-1.0.10/ +/subprojects/sphinxygen/ + +*.pyc +__pycache__/ |