.gitignore | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-)
New commits: commit b17b413ea2c3902a219e2e35a949e924436d34f8 Author: Jaskaran Singh <[email protected]> Date: Mon Dec 12 01:30:09 2016 +0530 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 <[email protected]> Reviewed-by: Jaskaran singh <[email protected]> diff --git a/.gitignore b/.gitignore index 1e505d6..d3be78c 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 _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
