From 135bc41f5c6f6c424f84a464f82dce5c3385d3b2 Mon Sep 17 00:00:00 2001 From: Richard Seldon Date: Sat, 27 Jan 2018 02:51:33 +0900 Subject: [PATCH] Update .gitignore to add tags `/doc/tags` gets auto-created upon plugin install (i am using Vundle plugin manager, believe this is vim behaviour). When using git submodules, the existence of `doc/tags` causes git errors indicating untracked content. Many vim plugins account for this, and add `tags` or `doc/tags` to their .gitignore files - for example: [vim-fugitive](https://github.com/tpope/vim-fugitive/blob/master/.gitignore), [nerdcommenter](https://github.com/scrooloose/nerdcommenter/blob/master/.gitignore) or [tabular](https://github.com/godlygeek/tabular/blob/master/.gitignore). Have about 60 plugins, and only 4 currently missing `tags` in their .gitignore - please consider accepting this PR. --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..448a40b --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/doc/tags +tags