diff options
author | Martin Kaiser <martin@kaiser.cx> | 2018-09-24 21:00:47 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2018-09-26 10:05:27 +0200 |
commit | 702d865fe6ab84c1179275beda6c31f7adaeafa1 (patch) | |
tree | f08b03e291c2f36d50d5ab30a6f75f9404fda370 | |
parent | d1cd3da1e5cf68921b81c04e0d4be571c96976a2 (diff) | |
download | busybox-702d865fe6ab84c1179275beda6c31f7adaeafa1.tar.gz |
.gitignore: add ctags output files
Exuberant ctags creates an output file called "tags" by default or
"TAGS" when it's run in emacs mode. Add those two files to .gitignore so
they won't be removed by git clean -df.
Signed-off-by: Martin Kaiser <martin@kaiser.cx>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | .gitignore | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index be1d46199..c03c2e8a6 100644 --- a/.gitignore +++ b/.gitignore @@ -50,3 +50,9 @@ cscope.files cscope.in.out cscope.out cscope.po.out + +# +# ctags output +# +tags +TAGS |