From 91c96bedbfff3d80a655b520235e890a530a1e73 Mon Sep 17 00:00:00 2001 From: Zbigniew Mandziejewicz Date: Fri, 3 Apr 2015 22:09:58 +0800 Subject: [PATCH] Line-endings and ignored files settings --- .gitattributes | 6 ++++++ .gitignore | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 000000000..d2b789541 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,6 @@ +text=auto +*.txt text +*.cpp text +*.h text +README text +LICENSE text diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..fb2cdb296 --- /dev/null +++ b/.gitignore @@ -0,0 +1,49 @@ +# Created by https://www.gitignore.io + +### Vim ### +[._]*.s[a-w][a-z] +[._]s[a-w][a-z] +*.un~ +Session.vim +.netrwhist +*~ + + +### CMake ### +CMakeCache.txt +CMakeFiles +Makefile +cmake_install.cmake +install_manifest.txt + + +### C++ ### +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app +