From ab67958c2443a955d695b94a8e34012570be7b47 Mon Sep 17 00:00:00 2001 From: "Alex W. Jackson" Date: Mon, 18 May 2015 19:48:23 -0400 Subject: [PATCH] Add .gitattributes and .gitignore --- .gitattributes | 22 ++++++++++++++++++++++ .gitignore | 9 +++++++++ bsnes/obj/.gitignore | 2 ++ bsnes/out/.gitignore | 2 ++ snesfilter/obj/.gitignore | 2 ++ snesreader/obj/.gitignore | 2 ++ supergameboy/obj/.gitignore | 2 ++ 7 files changed, 41 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 bsnes/obj/.gitignore create mode 100644 bsnes/out/.gitignore create mode 100644 snesfilter/obj/.gitignore create mode 100644 snesreader/obj/.gitignore create mode 100644 supergameboy/obj/.gitignore diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..412eeda --- /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 0000000..1c22457 --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +*.a +*.dll +*.dylib +*.exe +*.moc +*.o +*.rcc +*.so +*.so.1 \ No newline at end of file diff --git a/bsnes/obj/.gitignore b/bsnes/obj/.gitignore new file mode 100644 index 0000000..c96a04f --- /dev/null +++ b/bsnes/obj/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore \ No newline at end of file diff --git a/bsnes/out/.gitignore b/bsnes/out/.gitignore new file mode 100644 index 0000000..c96a04f --- /dev/null +++ b/bsnes/out/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore \ No newline at end of file diff --git a/snesfilter/obj/.gitignore b/snesfilter/obj/.gitignore new file mode 100644 index 0000000..c96a04f --- /dev/null +++ b/snesfilter/obj/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore \ No newline at end of file diff --git a/snesreader/obj/.gitignore b/snesreader/obj/.gitignore new file mode 100644 index 0000000..c96a04f --- /dev/null +++ b/snesreader/obj/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore \ No newline at end of file diff --git a/supergameboy/obj/.gitignore b/supergameboy/obj/.gitignore new file mode 100644 index 0000000..c96a04f --- /dev/null +++ b/supergameboy/obj/.gitignore @@ -0,0 +1,2 @@ +* +!.gitignore \ No newline at end of file