summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorGravatar Kyle K2022-09-16 10:58:29 -0700
committerGravatar Kyle K2022-09-16 10:58:29 -0700
commit49870baea4ccf47a2cc530fd66981805c6c12e5b (patch)
tree1fa94b891c615015819c18b98e7117326e98d772 /.gitignore
parentMerge pull request #8869 from SachinVin/cmake (diff)
downloadyuzu-49870baea4ccf47a2cc530fd66981805c6c12e5b.tar.gz
yuzu-49870baea4ccf47a2cc530fd66981805c6c12e5b.tar.xz
yuzu-49870baea4ccf47a2cc530fd66981805c6c12e5b.zip
GIT: Modify .gitignore to ignore wildcard for build directories
Helps if you have multiple build folders. There are other, dark ways to hide extra build folders from git, but this is better. See: https://github.com/citra-emu/citra/pull/6130
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index cdf37962a..a5f7248c7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,7 +2,7 @@
2# SPDX-License-Identifier: GPL-2.0-or-later 2# SPDX-License-Identifier: GPL-2.0-or-later
3 3
4# Build directory 4# Build directory
5[Bb]uild/ 5[Bb]uild*/
6doc-build/ 6doc-build/
7 7
8# Generated source files 8# Generated source files