summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoffrey BION <joffrey.bion@gmail.com>2016-12-05 00:53:11 +0100
committerJoffrey BION <joffrey.bion@gmail.com>2016-12-05 01:24:39 +0100
commita3e9d52577d2d5c700bbd145eace36abbadc9b72 (patch)
tree7479b94f850beee047eb46eeb804f66cc475a358
parentAdd license (diff)
downloadseven-wonders-a3e9d52577d2d5c700bbd145eace36abbadc9b72.tar.gz
seven-wonders-a3e9d52577d2d5c700bbd145eace36abbadc9b72.tar.bz2
seven-wonders-a3e9d52577d2d5c700bbd145eace36abbadc9b72.zip
Add initial git configuration
-rw-r--r--.gitattributes22
-rw-r--r--.gitignore106
2 files changed, 128 insertions, 0 deletions
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 00000000..0b6acf18
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,22 @@
+# Auto detect text files and perform LF normalization
+* text=auto
+
+# Custom for Visual Studio
+*.cs diff=csharp
+*.sln merge=union
+*.csproj merge=union
+*.vbproj merge=union
+*.fsproj merge=union
+*.dbproj merge=union
+
+# Standard to msysgit
+*.doc diff=astextplain
+*.DOC diff=astextplain
+*.docx diff=astextplain
+*.DOCX diff=astextplain
+*.dot diff=astextplain
+*.DOT diff=astextplain
+*.pdf diff=astextplain
+*.PDF diff=astextplain
+*.rtf diff=astextplain
+*.RTF diff=astextplain
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 00000000..f954295f
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,106 @@
+# =========================
+# Operating System Files
+# =========================
+
+# Windows
+# =========================
+
+# Windows image file caches
+Thumbs.db
+ehthumbs.db
+
+# Folder config file
+Desktop.ini
+
+# Recycle Bin used on file shares
+$RECYCLE.BIN/
+
+# Windows Installer files
+*.cab
+*.msi
+*.msm
+*.msp
+
+# Windows shortcuts
+*.lnk
+
+# OSX
+# =========================
+
+.DS_Store
+.AppleDouble
+.LSOverride
+
+# Thumbnails
+._*
+
+# Files that might appear on external disk
+.Spotlight-V100
+.Trashes
+
+# Directories potentially created on remote AFP share
+.AppleDB
+.AppleDesktop
+Network Trash Folder
+Temporary Items
+.apdisk
+/bin/
+/build/
+
+# ======================
+# Gradle
+# ======================
+
+.gradle
+build
+
+# ======================
+# IDEs
+# ======================
+
+# IntelliJ IDEA
+# ======================
+
+*.iml
+*.ipr
+*.iws
+.idea
+
+# Eclipse
+# ======================
+
+*.pydevproject
+.metadata
+bin/
+tmp/
+*.tmp
+*.bak
+*.swp
+*~.nib
+local.properties
+.settings/
+.loadpath
+
+# Eclipse Core
+.project
+
+# External tool builders
+.externalToolBuilders/
+
+# Locally stored "Eclipse launch configurations"
+*.launch
+
+# CDT-specific
+.cproject
+
+# JDT-specific (Eclipse Java Development Tools)
+.classpath
+
+# PDT-specific
+.buildpath
+
+# sbteclipse plugin
+.target
+
+# TeXlipse plugin
+.texlipse
bgstack15