From edfd83412f8230b68130bef44dd064bacfd02d3e Mon Sep 17 00:00:00 2001 From: Kevin Most Date: Mon, 1 Aug 2016 15:58:42 -0400 Subject: [PATCH 01/14] Add .externalNativeBuild to Android gitignore --- Android.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Android.gitignore b/Android.gitignore index e5df7b91..935ceef0 100644 --- a/Android.gitignore +++ b/Android.gitignore @@ -39,3 +39,6 @@ captures/ # Keystore files *.jks + +# External native build folder generated in Android Studio 2.2 and later +.externalNativeBuild From aad5932d4b18949f10d252539c7aab59bdf85e31 Mon Sep 17 00:00:00 2001 From: Peter Morlion Date: Wed, 7 Sep 2016 12:09:45 +0200 Subject: [PATCH 02/14] Include shared settings, according to official docs Official docs, found here: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 (as of 13 Aug 2016) --- Global/JetBrains.gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/Global/JetBrains.gitignore b/Global/JetBrains.gitignore index ea83a5eb..0a254147 100644 --- a/Global/JetBrains.gitignore +++ b/Global/JetBrains.gitignore @@ -4,9 +4,6 @@ # User-specific stuff: .idea/workspace.xml .idea/tasks.xml -.idea/dictionaries -.idea/vcs.xml -.idea/jsLibraryMappings.xml # Sensitive or high-churn files: .idea/dataSources.ids From cd22a9cc5867789d4fbda54dfa9661b7feee1f30 Mon Sep 17 00:00:00 2001 From: Serge van Ginderachter Date: Wed, 7 Sep 2016 15:49:29 +0200 Subject: [PATCH 03/14] introduce Ansible ignores --- Global/Ansible.gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 Global/Ansible.gitignore diff --git a/Global/Ansible.gitignore b/Global/Ansible.gitignore new file mode 100644 index 00000000..a8b42eb6 --- /dev/null +++ b/Global/Ansible.gitignore @@ -0,0 +1 @@ +*.retry From 3cdfc09983aece84ec69ed30644f87b1e8957835 Mon Sep 17 00:00:00 2001 From: Kevin Cunnane Date: Thu, 8 Sep 2016 18:09:05 -0700 Subject: [PATCH 04/14] Ignore .jfm files in Visual Studio .jfm files have started blocking checking for .sqlproj projects in Visual Studio. .jfm files are a new file-type created by the Microsoft ESENT database engine - this is a recent improvement only in Windows 10 Anniversary update. As the SSDT .sqlproj type in Visual Studio uses this engine for .dbmdl metadata files, and this file is locked by the user, this currently blocks users from checking into Git repositories. This fix helps mitigate this by avoiding checkin of this file type. --- VisualStudio.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index d56f8b53..c8557d40 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -189,6 +189,7 @@ ClientBin/ *~ *.dbmdl *.dbproj.schemaview +*.jfm *.pfx *.publishsettings node_modules/ From 6951912890be0b93eb0b8ff12265218393bd36e6 Mon Sep 17 00:00:00 2001 From: Filip W Date: Mon, 12 Sep 2016 15:34:02 +0200 Subject: [PATCH 05/14] added VS code coverage files --- VisualStudio.gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index c8557d40..f3e58fc2 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -110,6 +110,10 @@ _TeamCity* # DotCover is a Code Coverage Tool *.dotCover +# Visual Studio code coverage results +*.coverage +*.coveragexml + # NCrunch _NCrunch_* .*crunch*.local.xml From f1a8fddea28ac2ee0d5e9e4cc4d2a29c8dddf530 Mon Sep 17 00:00:00 2001 From: Muromi Ukari Date: Tue, 13 Sep 2016 23:37:43 +0900 Subject: [PATCH 06/14] Update Erlang.gitignore /ebin can't be simply ignored because *.app should be put here. [Erlang Applications](http://erlang.org/doc/design_principles/applications.html) > 8.4 Directory Structure > ebin - Contains the Erlang object code, the beam files. The .app file is also placed here. --- Erlang.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Erlang.gitignore b/Erlang.gitignore index 8e46d5a0..3826c857 100644 --- a/Erlang.gitignore +++ b/Erlang.gitignore @@ -4,7 +4,7 @@ deps *.beam *.plt erl_crash.dump -ebin +ebin/*.beam rel/example_project .concrete/DEV_MODE .rebar From da681d7115724f7517bdf29b2a9ca3a41b61442a Mon Sep 17 00:00:00 2001 From: Muhammad Rehan Saeed Date: Thu, 15 Sep 2016 08:48:08 +0100 Subject: [PATCH 07/14] Add support for Cake.Net Cake.Net creates a tools folder at the root which contains downloaded packages and should not be checked in. --- VisualStudio.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index f3e58fc2..e4ca5275 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -263,3 +263,6 @@ paket-files/ # Python Tools for Visual Studio (PTVS) __pycache__/ *.pyc + +# Cake +tools/ From 4f7062e132d7f88e68ab737e64fef872bd3a491f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Ferreira=20Loff?= Date: Mon, 19 Sep 2016 17:21:02 +0100 Subject: [PATCH 08/14] Add .nfs files to Linux.gitignore --- Global/Linux.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Global/Linux.gitignore b/Global/Linux.gitignore index cc958689..b56bf65d 100644 --- a/Global/Linux.gitignore +++ b/Global/Linux.gitignore @@ -8,3 +8,6 @@ # Linux trash folder which might appear on any partition or disk .Trash-* + +# .nfs files are created when an open file is removed but is still being accessed +.nfs* From a080e3676747f4aa1b7ba2a0300abea7d2be421e Mon Sep 17 00:00:00 2001 From: aarian93p Date: Wed, 21 Sep 2016 09:55:57 +0330 Subject: [PATCH 09/14] Added kernel module compilation results Adds kernel module compile to the ignore list. --- C.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/C.gitignore b/C.gitignore index 7a065c70..d93756fe 100644 --- a/C.gitignore +++ b/C.gitignore @@ -34,3 +34,10 @@ # Debug files *.dSYM/ *.su + +# Kernel Module Compile Results +*.mod.c +modules.order +Module.symvers +Mkfile.old +dkms.conf From b7e6ce66c701ac11cc2eff352f03ded64fc2287b Mon Sep 17 00:00:00 2001 From: aarian93p Date: Wed, 21 Sep 2016 10:04:49 +0330 Subject: [PATCH 10/14] More kernel module compilation results Added a few missed files from kernel compilation results --- C.gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/C.gitignore b/C.gitignore index d93756fe..06e97ff4 100644 --- a/C.gitignore +++ b/C.gitignore @@ -36,7 +36,8 @@ *.su # Kernel Module Compile Results -*.mod.c +*.mod* +*.cmd modules.order Module.symvers Mkfile.old From 841cf5859239626b4e8430e1734e07c7fc9c1b54 Mon Sep 17 00:00:00 2001 From: Mike Ralphson Date: Wed, 21 Sep 2016 07:18:07 +0100 Subject: [PATCH 11/14] Update Node.gitignore (*.tgz) Add `*.tgz`, the output of `npm pack`, or other build-steps. --- Node.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Node.gitignore b/Node.gitignore index bf7525f9..bc7fc557 100644 --- a/Node.gitignore +++ b/Node.gitignore @@ -39,3 +39,6 @@ jspm_packages # Optional REPL history .node_repl_history + +# Output of 'npm pack' +*.tgz From b87e4747419dca9f238930b099a1373f88cbb0b9 Mon Sep 17 00:00:00 2001 From: Muhammad Rehan Saeed Date: Mon, 26 Sep 2016 09:27:10 +0100 Subject: [PATCH 12/14] Update VisualStudio.gitignore --- VisualStudio.gitignore | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore index e4ca5275..1b86e7ec 100644 --- a/VisualStudio.gitignore +++ b/VisualStudio.gitignore @@ -264,5 +264,5 @@ paket-files/ __pycache__/ *.pyc -# Cake -tools/ +# Cake - Uncomment if you are using it +# tools/ From 14740a52c50fabdab1758808e995dcd9766bd76f Mon Sep 17 00:00:00 2001 From: futabooo Date: Tue, 27 Sep 2016 10:33:41 +0900 Subject: [PATCH 13/14] Add vendor folder to Go.gitignore --- Go.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Go.gitignore b/Go.gitignore index cd0d5d1e..397a0ed4 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -25,3 +25,6 @@ _testmain.go # Output of the go coverage tool, specifically when used with LiteIDE *.out + +# external packages folder +vendor/ From 309aa7aba03dff56971883c5507cbf32b6380853 Mon Sep 17 00:00:00 2001 From: Wayne Nilsen Date: Sun, 2 Oct 2016 23:46:39 -0400 Subject: [PATCH 14/14] Add rustfmt gitignore (#2108) --- Rust.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Rust.gitignore b/Rust.gitignore index cb14a420..50281a44 100644 --- a/Rust.gitignore +++ b/Rust.gitignore @@ -5,3 +5,6 @@ # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries # More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock Cargo.lock + +# These are backup files generated by rustfmt +**/*.rs.bk