From d1b2f0ec628e84767fbc4b15adab821361e48823 Mon Sep 17 00:00:00 2001 From: Benny Baumann Date: Thu, 19 Jun 2014 18:33:15 +0200 Subject: [PATCH] add: Git Attribute pinning --- .gitattributes | 11 +++++++++++ .gitignore | 9 +++++++++ 2 files changed, 20 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..e255b36 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,11 @@ +* text=auto + +*.c text +*.cpp text +*.h text +*.hpp text + +*.txt text +*.md text + +Makefile text diff --git a/.gitignore b/.gitignore index c3af5c8..9cd9963 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ +# Auto-Generated Dependenciy files +*.d +*.log + # Compiled Object files *.slo *.lo @@ -15,3 +19,8 @@ # Ignore Eclipse stuff *.cproject *.project + +# Subdirectories filled with generated binary files +bin +dep +obj -- 2.39.2