diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..dadfb3d --- /dev/null +++ b/.gitignore @@ -0,0 +1,42 @@ +# 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 + +# Testing folders +test/fuzzing/ + +# Ignore if someone adapts Makefile +Makefile + +# Other documentation ignores +*.md +*.ps + +# Compressed archives +*.tar.bz2 +*.tar.bz +*.tar.xz + +# Excluded from ignorance +!.gitignore |