From ba5cf1b78cd95b5628218704f627be51f9691a83 Mon Sep 17 00:00:00 2001 From: Luiz Gonzaga dos Santos Filho Date: Tue, 23 Sep 2014 08:47:59 -0300 Subject: [PATCH] Ignoring just "tags" is too generic My application had a folder named "tags" as part of its business rules and because of this it got ignored. I believe upadting this section according to the very link in the comment above should fix it. (not ignoring `tags/` folder). --- git/gitignore | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/git/gitignore b/git/gitignore index e807a85..ee81ac2 100644 --- a/git/gitignore +++ b/git/gitignore @@ -17,9 +17,19 @@ Desktop.ini # Tags taken from: https://github.com/github/gitignore/blob/master/Global/Tags.gitignore # ---------------------------------------------------------------------------------------------- -# Ignore tags created by etags and ctags +# Ignore tags created by etags, ctags, gtags (GNU global) and cscope TAGS +!TAGS/ tags +!tags/ +gtags.files +GTAGS +GRTAGS +GPATH +cscope.files +cscope.out +cscope.in.out +cscope.po.out # Vim taken from: https://github.com/github/gitignore/blob/master/Global/vim.gitignore # ----------------------------------------------------------------------------------------------