From 329a75491760b48df98dc8de1223862a30a44734 Mon Sep 17 00:00:00 2001 From: Arctic Ice Studio Date: Sat, 22 Jun 2019 16:42:31 +0200 Subject: [PATCH] Add Git ignore and attribute pattern Added the `.gitattributes` (1) and `.gitignore` (2) configuration files for pattern handling that are matching the latest "Arctic Ice Studio" project design standards/guidelines. References: (1) https://git-scm.com/docs/gitattributes (2) https://git-scm.com/docs/gitignore Epic: GH-33 Blocks GH-48 Depends on GH-49 Resolves GH-35 --- .gitattributes | 13 +++++++++++++ .gitignore | 6 ++++++ LICENSE.md | 4 ++-- 3 files changed, 21 insertions(+), 2 deletions(-) create mode 100644 .gitattributes create mode 100644 .gitignore diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..ef51643 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,13 @@ +# Copyright (C) 2017-present Arctic Ice Studio +# Copyright (C) 2017-present Sven Greb +# +# Project: snowsaw +# Repository: https://github.com/arcticicestudio/snowsaw +# License: MIT +# References: +# https://git-scm.com/docs/gitattributes +# https://git-scm.com/book/en/v2/Customizing-Git-Git-Attributes#Keyword-Expansion + +# Automatically perform line feed (LF) normalization for files detected as text and +# leave all files detected as binary untouched. +* text=auto diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2f278e6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +# Copyright (C) 2017-present Arctic Ice Studio +# Copyright (C) 2017-present Sven Greb +# +# Project: snowsaw +# Repository: https://github.com/arcticicestudio/snowsaw +# License: MIT diff --git a/LICENSE.md b/LICENSE.md index 8f7973c..b1d01ab 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,7 +1,7 @@ MIT License (MIT) -Copyright (C) 2019-present Arctic Ice Studio (https://www.arcticicestudio.com) -Copyright (C) 2019-present Sven Greb (https://www.svengreb.de) +Copyright (C) 2017-present Arctic Ice Studio (https://www.arcticicestudio.com) +Copyright (C) 2017-present Sven Greb (https://www.svengreb.de) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal