summaryrefslogtreecommitdiff
path: root/.gitignore
diff options
context:
space:
mode:
authorKlemens Nanni <kn@cvs.openbsd.org>2021-11-11 14:03:22 +0000
committerKlemens Nanni <kn@cvs.openbsd.org>2021-11-11 14:03:22 +0000
commit778925f8f2f9e7485445a5fa4e361fc917a76abf (patch)
treebb481cb7a5e15b476117827c5abf4a0145be56d6 /.gitignore
parent26e847aa2b0dc1e6d682b9280bb362e3851837f5 (diff)
Ignore tags files
Besides obj (and all the build objects inside), tags seem to be the only thing that's automatically created by our build infrastructure which should never be committed. CVS ignores "tags" due to its builtin list of ignore patterns. Git does not ignore tags, although it has a builtin list (e.g. "*.o"). Got has no such builtin list. Add "**/tags" to .gitignore specifically to provide a sane default for Got checkouts. Mirror .gitignore with sys/.gitignore to have the same experience with kernel-only checkouts, as is common practise with Got. OK stsp sthen
Diffstat (limited to '.gitignore')
-rw-r--r--.gitignore1
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index eecd321da5a..3fdff78bcab 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
**/obj
+**/tags