From f4240a9b27e98c40138c6ec866132b237f311dff Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 19 Jan 2025 20:39:07 -0500 Subject: 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. --- .gitignore | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 8ac4349..e73e7aa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,9 +1,11 @@ -# Copyright 2017-2022 David Robillard +# Copyright 2017-2025 David Robillard # SPDX-License-Identifier: 0BSD OR ISC -.meson-subproject-wrap-hash.txt -__pycache__ -build/** -subprojects/packagecache/ -subprojects/sphinxygen-1.0.4/ -subprojects/sphinxygen/ +/.meson-subproject-wrap-hash.txt +/build/ +/subprojects/packagecache/ +/subprojects/sphinxygen-1.0.10/ +/subprojects/sphinxygen/ + +*.pyc +__pycache__/ -- cgit v1.2.1