diff options
author | Jaskaran Singh <jvsg1303@gmail.com> | 2016-12-12 01:30:09 +0530 |
---|---|---|
committer | Jaskaran singh <jvsg1303@gmail.com> | 2016-12-12 20:08:14 +0000 |
commit | b17b413ea2c3902a219e2e35a949e924436d34f8 (patch) | |
tree | 9420b62d5a095a9d5ce74b0d6b207c5ba871f8fa /.gitignore | |
parent | 04a77bfa9c5a3da6d99ee6ad8d4802638b7d76fa (diff) |
Add rules to gitignore
Rule for ctags: Sublime generated(or otherwise) ctags look like
sc/abc/xyz/tags. The present rule cannot look after tags which
are more than 1 directory deep. Hence this change.
Other rules added : Jetbrains Clion, cscope, sublime text specific
Change-Id: I1dbbe4904f3d15bbf198cd372591b464efb3896a
Reviewed-on: https://gerrit.libreoffice.org/31874
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Jaskaran singh <jvsg1303@gmail.com>
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore index 1e505d60e91c..d3be78c22445 100644 --- a/.gitignore +++ b/.gitignore @@ -70,7 +70,8 @@ # make tags -/tags +**/tags +**/.tags* # make etags /TAGS @@ -159,4 +160,14 @@ DerivedData /.codelite *.workspace *.workspace.session -*.tags
\ No newline at end of file +*.tags + +# JetBrains Clion Specific +.idea + +# Cscope +*.out + +# Sublime Specific +*.sublime-project +*.sublime-workspace |