From 4f7ad979b9c39e442b534656b330d07eaf0de978 Mon Sep 17 00:00:00 2001 From: Kacper Ksieski Date: Mon, 11 May 2020 20:44:59 -0400 Subject: [PATCH 01/21] add: create template for Alteryx Designer --- community/Alteryx.gitignore | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 community/Alteryx.gitignore diff --git a/community/Alteryx.gitignore b/community/Alteryx.gitignore new file mode 100644 index 00000000..a682e4b3 --- /dev/null +++ b/community/Alteryx.gitignore @@ -0,0 +1,29 @@ +# gitignore template for Alteryx Designer +# website: https://www.alteryx.com/ +# website: https://help.alteryx.com/current/designer/alteryx-file-types + +# Alteryx Data Files +.yxdb +.cydb +.cyidx +.rptx +.vvf +.aws + +# Alteryx Special Files +.yxwv +.yxft +.yxbe +.bak +.pcxml +.log +.bin +.yxlang +CASS.ini + +# Alteryx License Files +.yxlc +.slc +.cylc +.alc +.gzlc From 8b42a0d1e3799b253af0a04c927aa9c64548ec62 Mon Sep 17 00:00:00 2001 From: William Entriken Date: Tue, 30 Mar 2021 18:26:32 -0400 Subject: [PATCH 02/21] Create GitHubPages.gitignore --- GitHubPages.gitignore | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 GitHubPages.gitignore diff --git a/GitHubPages.gitignore b/GitHubPages.gitignore new file mode 100644 index 00000000..81626739 --- /dev/null +++ b/GitHubPages.gitignore @@ -0,0 +1,17 @@ +# This .gitignore is appropriate for repositories deployed to GitHub Pages and using +# a Gemfile as specified at https://github.com/github/pages-gem#conventional + +# Basic Jekyll gitignores (synchronize to Jekyll.gitignore) +_site/ +.sass-cache/ +.jekyll-cache/ +.jekyll-metadata + +# Additional Ruby/bundler ignore for when you run: bundle install +/vendor + +# Specific ignore for GitHub Pages +# GitHub Pages will always use its own deployed version of pages-gem +# This means GitHub Pages will NOT use your Gemfile.lock and therefore it is not +# counterproductive to check this file into the repository. +Gemfile.lock From 978e3010329eff589d2b9b140cb8af30f4480065 Mon Sep 17 00:00:00 2001 From: William Entriken Date: Wed, 31 Mar 2021 13:56:32 -0400 Subject: [PATCH 03/21] Update GitHubPages.gitignore --- GitHubPages.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GitHubPages.gitignore b/GitHubPages.gitignore index 81626739..fddfb6b9 100644 --- a/GitHubPages.gitignore +++ b/GitHubPages.gitignore @@ -12,6 +12,6 @@ _site/ # Specific ignore for GitHub Pages # GitHub Pages will always use its own deployed version of pages-gem -# This means GitHub Pages will NOT use your Gemfile.lock and therefore it is not +# This means GitHub Pages will NOT use your Gemfile.lock and therefore it is # counterproductive to check this file into the repository. Gemfile.lock From 110e40ad2a1b64c46fd690fcce2b20b16fe53f7f Mon Sep 17 00:00:00 2001 From: kacper ksieski Date: Thu, 22 Apr 2021 10:00:03 -0400 Subject: [PATCH 04/21] fix: add stars --- community/Alteryx.gitignore | 53 ++++++++++++++++++++++++------------- 1 file changed, 34 insertions(+), 19 deletions(-) diff --git a/community/Alteryx.gitignore b/community/Alteryx.gitignore index a682e4b3..a8e1341f 100644 --- a/community/Alteryx.gitignore +++ b/community/Alteryx.gitignore @@ -3,27 +3,42 @@ # website: https://help.alteryx.com/current/designer/alteryx-file-types # Alteryx Data Files -.yxdb -.cydb -.cyidx -.rptx -.vvf -.aws +*.yxdb +*.cydb +*.cyidx +*.rptx +*.vvf +*.aws # Alteryx Special Files -.yxwv -.yxft -.yxbe -.bak -.pcxml -.log -.bin -.yxlang +*.yxwv +*.yxft +*.yxbe +*.bak +*.pcxml +*.log +*.bin +*.yxlang CASS.ini # Alteryx License Files -.yxlc -.slc -.cylc -.alc -.gzlc +*.yxlc +*.slc +*.cylc +*.alc +*.gzlc + +## gitignore reference sites +# https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#Ignoring-Files +# https://git-scm.com/docs/gitignore +# https://help.github.com/articles/ignoring-files/ + +## Useful knowledge from stackoverflow +# Even if you haven't tracked the files so far, git seems to be able to "know" about them even after you add them to .gitignore. +# WARNING: First commit your current changes, or you will lose them. +# Then run the following commands from the top folder of your git repo: +# git rm -r --cached . +# git add . +# git commit -m "fixed untracked files" + +# author: Kacper Ksieski \ No newline at end of file From d63f4b14cad6a400719c123c994d407e65e230f3 Mon Sep 17 00:00:00 2001 From: katexochen <49727155+katexochen@users.noreply.github.com> Date: Tue, 31 May 2022 18:40:47 +0200 Subject: [PATCH 05/21] Ignore go.work.sum --- Go.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Go.gitignore b/Go.gitignore index 3b735ec4..6f6f5e6a 100644 --- a/Go.gitignore +++ b/Go.gitignore @@ -19,3 +19,4 @@ # Go workspace file go.work +go.work.sum From e8131b2a80ed1fa84c94da08d257969a198d0ee4 Mon Sep 17 00:00:00 2001 From: Marvin Vogt Date: Sun, 9 Apr 2023 18:25:17 +0200 Subject: [PATCH 06/21] Add `.pdm-python` to python gitignore --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index 68bc17f9..f7f74c71 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -108,6 +108,7 @@ ipython_config.py # in version control. # https://pdm.fming.dev/#use-with-ide .pdm.toml +.pdm-python # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm __pypackages__/ From 716e3baab06bb469457e7f91a111cd16b4e2e01b Mon Sep 17 00:00:00 2001 From: William Entriken Date: Mon, 18 Sep 2023 15:43:20 -0400 Subject: [PATCH 07/21] Add notes link --- GitHubPages.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/GitHubPages.gitignore b/GitHubPages.gitignore index fddfb6b9..493e69ba 100644 --- a/GitHubPages.gitignore +++ b/GitHubPages.gitignore @@ -14,4 +14,5 @@ _site/ # GitHub Pages will always use its own deployed version of pages-gem # This means GitHub Pages will NOT use your Gemfile.lock and therefore it is # counterproductive to check this file into the repository. +# Details at https://github.com/github/pages-gem/issues/768 Gemfile.lock From bb629fc14def1580c60c20119b6eef72e5322973 Mon Sep 17 00:00:00 2001 From: Marvin Vogt Date: Sun, 1 Oct 2023 22:41:53 +0200 Subject: [PATCH 08/21] Update PDM docs reference Co-authored-by: Leonardo Nascimento <6169152+leonaascimento@users.noreply.github.com> --- Python.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python.gitignore b/Python.gitignore index f7f74c71..60a821a5 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -106,7 +106,7 @@ ipython_config.py #pdm.lock # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it # in version control. -# https://pdm.fming.dev/#use-with-ide +# https://pdm.fming.dev/latest/usage/project/#working-with-version-control .pdm.toml .pdm-python From bfa56dc5d8465f558383f6764e1219b4e983b725 Mon Sep 17 00:00:00 2001 From: Marvin Vogt Date: Thu, 28 Dec 2023 14:21:54 +0100 Subject: [PATCH 09/21] Add .pdm-build/ --- Python.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Python.gitignore b/Python.gitignore index 60a821a5..82f92755 100644 --- a/Python.gitignore +++ b/Python.gitignore @@ -109,6 +109,7 @@ ipython_config.py # https://pdm.fming.dev/latest/usage/project/#working-with-version-control .pdm.toml .pdm-python +.pdm-build/ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm __pypackages__/ From 893c55894773ba425a84c4b678a3882f9ab0393f Mon Sep 17 00:00:00 2001 From: Jason Gross Date: Wed, 3 Apr 2024 21:19:57 +0100 Subject: [PATCH 10/21] Add rubber cache files to TeX.gitignore Generated by [rubber](https://tex-talk.net/2011/12/building-documents-with-rubber/). [The docs](https://github.com/petrhosek/rubber/blob/8ec18fd096b186901f197d26c8e1060b42f0b34f/doc/rubber.texi#L158) claim to use `rubber.cache`, but I've seen $filename.rubbercache in the wild, so I'm including both. --- TeX.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index e9642441..d9cf4372 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -39,6 +39,8 @@ *.synctex.gz *.synctex.gz(busy) *.pdfsync +*.rubbercache +rubber.cache ## Build tool directories for auxiliary files # latexrun From 3249072f3b096989167682c25aa558540bcced91 Mon Sep 17 00:00:00 2001 From: Gianluca Recchia Date: Mon, 22 Apr 2024 11:27:20 +0200 Subject: [PATCH 11/21] Ignore lock info files in terraform `.gitignore` This is recommended by the official Style Guide here: https://developer.hashicorp.com/terraform/language/style#gitignore. --- Terraform.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Terraform.gitignore b/Terraform.gitignore index 9b8a46e6..2faf43d0 100644 --- a/Terraform.gitignore +++ b/Terraform.gitignore @@ -23,6 +23,9 @@ override.tf.json *_override.tf *_override.tf.json +# Ignore transient lock info files created by terraform apply +.terraform.tfstate.lock.info + # Include override files you do wish to add to version control using negated pattern # !example_override.tf From 1e6efa6d03b00c7a2549987f51f8c0cb8551949e Mon Sep 17 00:00:00 2001 From: Xiangsong Zeng Date: Fri, 26 Apr 2024 18:00:50 +0800 Subject: [PATCH 12/21] Add zstd files to Archives.gitignore --- Global/Archives.gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Global/Archives.gitignore b/Global/Archives.gitignore index 4ed9ab83..8c92521b 100644 --- a/Global/Archives.gitignore +++ b/Global/Archives.gitignore @@ -14,6 +14,8 @@ *.lzma *.cab *.xar +*.zst +*.tzst # Packing-only formats *.iso From 338eb82763772c85e64d64a94d999d83d36082e9 Mon Sep 17 00:00:00 2001 From: MountainKing123 Date: Tue, 30 Apr 2024 18:54:16 +0200 Subject: [PATCH 13/21] Update UnrealEngine.gitignore Edited Unreal Engine gitignore to also ignore "Intermediate" data in the "Plugins" directory, so it ignores deeper nested intermediate data, like with Epic's "Game Features" plugin e.g. "Plugins/GameFeatures/MyGameFeature/Intermediate". --- UnrealEngine.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UnrealEngine.gitignore b/UnrealEngine.gitignore index 6582eaf9..705552ec 100644 --- a/UnrealEngine.gitignore +++ b/UnrealEngine.gitignore @@ -68,7 +68,7 @@ Saved/* # Compiled source files for the engine to use Intermediate/* -Plugins/*/Intermediate/* +Plugins/**/Intermediate/* # Cache files for the editor to use DerivedDataCache/* From f0fc1da1b36b2ea16616b8df72b6e78e6ee9095e Mon Sep 17 00:00:00 2001 From: MountainKing123 Date: Tue, 30 Apr 2024 19:14:07 +0200 Subject: [PATCH 14/21] Same for Binaries --- UnrealEngine.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UnrealEngine.gitignore b/UnrealEngine.gitignore index 705552ec..6e0d95fb 100644 --- a/UnrealEngine.gitignore +++ b/UnrealEngine.gitignore @@ -47,7 +47,7 @@ SourceArt/**/*.tga # Binary Files Binaries/* -Plugins/*/Binaries/* +Plugins/**/Binaries/* # Builds Build/* From 86ddbd59fe830c4e77f2cf1881def4f65b45a6fc Mon Sep 17 00:00:00 2001 From: beneiii Date: Sun, 5 May 2024 16:18:05 +0200 Subject: [PATCH 15/21] Add hypdoc temporary files --- TeX.gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TeX.gitignore b/TeX.gitignore index e9642441..87a82f2c 100644 --- a/TeX.gitignore +++ b/TeX.gitignore @@ -138,6 +138,9 @@ acs-*.bib *.trc *.xref +# hypdoc +*.hd + # hyperref *.brf From c46dfda52a23148551cef200750f7537fbd0c3c6 Mon Sep 17 00:00:00 2001 From: src_resources Date: Sat, 11 May 2024 23:45:55 +0800 Subject: [PATCH 16/21] Add RustRover entry for Rust.gitignore Add an optional entry for JetBrains's RustRover IDE in Rust.gitignore. Signed-off-by: src_resources --- Rust.gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Rust.gitignore b/Rust.gitignore index 6985cf1b..d01bd1a9 100644 --- a/Rust.gitignore +++ b/Rust.gitignore @@ -12,3 +12,10 @@ Cargo.lock # MSVC Windows builds of rustc generate these, which store debugging information *.pdb + +# RustRover +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ \ No newline at end of file From ebee5bfe87a2799d26d346798f7364eb0dccdcaf Mon Sep 17 00:00:00 2001 From: Evgeny Aleksandrov Date: Sun, 12 May 2024 17:56:43 +0300 Subject: [PATCH 17/21] Drop Xcode 3 compatibility --- Objective-C.gitignore | 13 ------------- Swift.gitignore | 13 ------------- 2 files changed, 26 deletions(-) diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 7801c930..45c38074 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -9,19 +9,6 @@ xcuserdata/ *.xcscmblueprint *.xccheckout -## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) -build/ -DerivedData/ -*.moved-aside -*.pbxuser -!default.pbxuser -*.mode1v3 -!default.mode1v3 -*.mode2v3 -!default.mode2v3 -*.perspectivev3 -!default.perspectivev3 - ## Obj-C/Swift specific *.hmap diff --git a/Swift.gitignore b/Swift.gitignore index 330d1674..bc46f5d6 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -9,19 +9,6 @@ xcuserdata/ *.xcscmblueprint *.xccheckout -## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4) -build/ -DerivedData/ -*.moved-aside -*.pbxuser -!default.pbxuser -*.mode1v3 -!default.mode1v3 -*.mode2v3 -!default.mode2v3 -*.perspectivev3 -!default.perspectivev3 - ## Obj-C/Swift specific *.hmap From a4043487860cd48d0bdb54aa41e21dbd7fc91afc Mon Sep 17 00:00:00 2001 From: Evgeny Aleksandrov Date: Sun, 12 May 2024 17:57:07 +0300 Subject: [PATCH 18/21] Drop Xcode 8 compatibility --- Global/Xcode.gitignore | 4 ---- Objective-C.gitignore | 4 ---- Swift.gitignore | 4 ---- 3 files changed, 12 deletions(-) diff --git a/Global/Xcode.gitignore b/Global/Xcode.gitignore index f87d2f2e..5073505e 100644 --- a/Global/Xcode.gitignore +++ b/Global/Xcode.gitignore @@ -1,6 +1,2 @@ ## User settings xcuserdata/ - -## Xcode 8 and earlier -*.xcscmblueprint -*.xccheckout diff --git a/Objective-C.gitignore b/Objective-C.gitignore index 45c38074..9b8cd070 100644 --- a/Objective-C.gitignore +++ b/Objective-C.gitignore @@ -5,10 +5,6 @@ ## User settings xcuserdata/ -## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) -*.xcscmblueprint -*.xccheckout - ## Obj-C/Swift specific *.hmap diff --git a/Swift.gitignore b/Swift.gitignore index bc46f5d6..439b68dd 100644 --- a/Swift.gitignore +++ b/Swift.gitignore @@ -5,10 +5,6 @@ ## User settings xcuserdata/ -## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9) -*.xcscmblueprint -*.xccheckout - ## Obj-C/Swift specific *.hmap From 963cebd90cb0f741c862c6d44c47da7484b1e1db Mon Sep 17 00:00:00 2001 From: DrKeek <43802867+DrKeek@users.noreply.github.com> Date: Tue, 21 May 2024 11:57:41 +0800 Subject: [PATCH 19/21] Add files via upload...UiPath.gitignore This file contains folders to be excluded for tracking during RPA development using UiPath Studio. Accidentally tracking these folders have caused issues with changing branches during code development. The UiPath developer community as of 2024 is in excess of 2 million developers spanning over 43 countries. UiPath itself has been around for 19 years since 2005. This submission can potentially help millions of new and existing UiPath developers in their work. --- community/UiPath.gitignore | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 community/UiPath.gitignore diff --git a/community/UiPath.gitignore b/community/UiPath.gitignore new file mode 100644 index 00000000..3dfdbf02 --- /dev/null +++ b/community/UiPath.gitignore @@ -0,0 +1,11 @@ +# gitignore template for RPA development using UiPath Studio +# website: Advanced Automation Software, RPA Tools - Studio | UiPath +# +# Recommended: n/a + +# Ignore folders that could cause issues if accidentally tracked +**/.local/** +**/.settings/** +**/.objects/** +**/.tmh/** +**/*.log From d3217fdb67d3e3ab2c684062577b83d0bed32c76 Mon Sep 17 00:00:00 2001 From: DrKeek <43802867+DrKeek@users.noreply.github.com> Date: Tue, 21 May 2024 12:05:49 +0800 Subject: [PATCH 20/21] Add files via upload...UiPath.gitignore This file contains folders to be excluded for tracking during RPA development using UiPath Studio. Accidentally tracking these folders have caused issues with changing branches during code development. The UiPath developer community as of 2024 is in excess of 2 million developers spanning over 43 countries. UiPath itself has been around for 19 years since 2005. This submission can potentially help millions of new and existing UiPath developers in their work. --- community/UiPath.gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/community/UiPath.gitignore b/community/UiPath.gitignore index 3dfdbf02..ef7754ae 100644 --- a/community/UiPath.gitignore +++ b/community/UiPath.gitignore @@ -1,5 +1,5 @@ # gitignore template for RPA development using UiPath Studio -# website: Advanced Automation Software, RPA Tools - Studio | UiPath +# website: https://www.uipath.com/product/studio # # Recommended: n/a From 3af7bb0480965c24777d19d8aa6fbfd92080b92a Mon Sep 17 00:00:00 2001 From: Ramith Rodrigo Date: Mon, 8 Apr 2024 15:59:38 +0530 Subject: [PATCH 21/21] Create Ballerina.gitignore --- Ballerina.gitignore | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 Ballerina.gitignore diff --git a/Ballerina.gitignore b/Ballerina.gitignore new file mode 100644 index 00000000..030a350f --- /dev/null +++ b/Ballerina.gitignore @@ -0,0 +1,11 @@ +# generated files +target/ +generated/ + +# dependencies +Dependencies.toml + +# config files +Config.toml +# the config files used for testing, Uncomment the following line if you want to commit the test config files +#!**/tests/Config.toml