From 25b9a17be72fa6ec55cc0879d2d141440e981421 Mon Sep 17 00:00:00 2001 From: Daniel Borkmann Date: Thu, 28 Jun 2012 15:48:33 +0200 Subject: [PATCH] dot: fixed current gitignore file Signed-off-by: Daniel Borkmann --- .gitignore | 94 +++++++++++++++++++++++++++++++++++++++++++++----------------- 1 file changed, 68 insertions(+), 26 deletions(-) rewrite .gitignore (60%) diff --git a/.gitignore b/.gitignore dissimilarity index 60% index 7dc981eb..5ccd8182 100644 --- a/.gitignore +++ b/.gitignore @@ -1,26 +1,68 @@ -.* -*.o -*.o.* -*.a -*.s -*.ko -*.so -*.so.dbg -*.mod.c -*.i -*.lst -*.symtypes -*.order -*.elf -*.bin -*.lzma -*.lzo -*.patch -*.gcno -*.orig -*~ -src/build/ -src/test/fuzzing/ -\#*# - -!.gitignore +# Editor crap (emacs, vim, ...) +*.swp +*.orig +\#*\# +.\#* +.*.sw[a-z] +*.un~ + +# Hidden files, general things +.* +*~ + +# Compiled object files +*.slo +*.lo +*.o + +# Compiled dynamic libraries +*.so + +# Compiled static libraries +*.lai +*.la +*.a + +# Build and testing folders +src/build/ +src/test/fuzzing/ + +# LaTeX documentation files +*.acn +*.acr +*.alg +*.aux +*.bbl +*.blg +*.dvi +*.fdb_latexmk +*.glg +*.glo +*.gls +*.idx +*.ilg +*.ind +*.ist +*.lof +*.log +*.lot +*.maf +*.mtc +*.mtc0 +*.nav +*.nlo +*.out +*.pdfsync +*.ps +*.snm +*.synctex.gz +*.toc +*.vrb +*.xdy + +# Other documentation ignores +*.md +*.ps + +# Excluded from ignorance +!.gitignore -- 2.11.4.GIT