From 98cd4be26a63b9c5c668e1e1a72eab97773210dd Mon Sep 17 00:00:00 2001 From: Jakub Czajka Date: Fri, 3 Jun 2022 19:58:40 +0200 Subject: [PATCH] Ignore the TAGS file. TAGS is an output file for `etags` tag tables. Tag tables may be large and may change over time. It is better to regenerate them instead of tracking with `git'. This commit adds TAGS to .gitignore. --- .gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bea5755 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +TAGS -- 2.39.5