aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Ballerina.gitignore11
-rw-r--r--CMake.gitignore1
-rw-r--r--Delphi.gitignore12
-rw-r--r--ECU-TEST.gitignore62
-rw-r--r--Firebase.gitignore28
-rw-r--r--GitHubPages.gitignore18
-rw-r--r--Global/Archives.gitignore2
-rw-r--r--Global/Xcode.gitignore4
-rw-r--r--Go.gitignore4
-rw-r--r--IAR.gitignore47
-rw-r--r--KiCad.gitignore2
-rw-r--r--[l---------]Kotlin.gitignore28
-rw-r--r--Laravel.gitignore7
-rw-r--r--Modelica.gitignore42
-rw-r--r--Objective-C.gitignore24
-rw-r--r--Python.gitignore10
-rw-r--r--README.md2
-rw-r--r--ReScript.gitignore3
-rw-r--r--Rust.gitignore7
-rw-r--r--Swift.gitignore28
-rw-r--r--TeX.gitignore6
-rw-r--r--Terraform.gitignore3
-rw-r--r--Unity.gitignore1
-rw-r--r--UnrealEngine.gitignore4
-rw-r--r--VisualStudio.gitignore2
-rw-r--r--Zig.gitignore2
-rw-r--r--community/Alteryx.gitignore44
-rw-r--r--community/Hexo.gitignore14
-rw-r--r--community/Move.gitignore6
-rw-r--r--community/OpenTofu.gitignore42
-rw-r--r--community/Terragrunt.gitignore3
-rw-r--r--community/UiPath.gitignore11
32 files changed, 419 insertions, 61 deletions
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
diff --git a/CMake.gitignore b/CMake.gitignore
index 46f42f8f..11c76431 100644
--- a/CMake.gitignore
+++ b/CMake.gitignore
@@ -9,3 +9,4 @@ install_manifest.txt
compile_commands.json
CTestTestfile.cmake
_deps
+CMakeUserPresets.json
diff --git a/Delphi.gitignore b/Delphi.gitignore
index 9532800b..8df99b67 100644
--- a/Delphi.gitignore
+++ b/Delphi.gitignore
@@ -26,6 +26,18 @@
#*.obj
#
+# Default Delphi compiler directories
+# Content of this directories are generated with each Compile/Construct of a project.
+# Most of the time, files here have not there place in a code repository.
+#Win32/
+#Win64/
+#OSX64/
+#OSXARM64/
+#Android/
+#Android64/
+#iOSDevice64/
+#Linux64/
+
# Delphi compiler-generated binaries (safe to delete)
*.exe
*.dll
diff --git a/ECU-TEST.gitignore b/ECU-TEST.gitignore
new file mode 100644
index 00000000..d25ba945
--- /dev/null
+++ b/ECU-TEST.gitignore
@@ -0,0 +1,62 @@
+# gitignore template for ECU-TEST workspaces - by TraceTronic https://tracetronic.com
+# website: https://www.ecu-test.com
+# * all directories are related to the default directories, please adapt the .gitignore if you use customized
+# directories
+
+# Dynamic workspace settings
+# * We don't recommend to ignore the .workspace directory, because of important project specific settings
+# local user settings
+.workspace/ETdrive.xml
+.workspace/favorites.xml
+.workspace/filters.xml
+.workspace/generators.xml
+.workspace/history.xml
+.workspace/parallelExecution.xml
+.workspace/signalviewer.xml
+.workspace/signalViewerHistory.json
+.workspace/signalviewer2layout.xml
+.workspace/testeditor.xml
+.workspace/tooladapter.xml
+.workspace/view.xml
+# optional, if your process depends on this file remove exclusion
+.workspace/interactiveexecution.xml
+.workspace/pythonlibrary.xml
+# deprecated, support for older versions
+.workspace/traceexplorer.xml
+
+# Custom file formats and test dependencies
+# * you can manage your artifacts also with TEST-GUIDE (https://www.test-guide.info) and reference them via Playbooks
+*.arxml
+*.a2l
+*.dbc
+*.hex
+*.s19
+[tT]estdata
+[tT]estdaten
+
+# Test results and test execution related content
+# * Git is not intended to store and provide test results for all iterations
+# * We recommend to use TEST-GUIDE (https://www.test-guide.info) for the test report management
+TestReports
+
+# Report generators and templates
+# * if you want to provide (f.e.) your own report generators exclude the directory here and ignore only the
+# unnecessary subdirectories
+Templates
+
+# Exclude large binary artifacts
+# * you can manage your artifacts also with TEST-GUIDE (https://www.test-guide.info) and reference them via Playbooks
+Offline-FIUs
+Offline-Models
+Offline-SGBDs
+*.exe
+*.msi
+*.zip
+*.7z
+
+# Exclude default and custom temporary directories
+Backup_*
+
+# Python bytecode and cache files
+__pycache__/
+*.py[cod]
diff --git a/Firebase.gitignore b/Firebase.gitignore
new file mode 100644
index 00000000..55b8b0ea
--- /dev/null
+++ b/Firebase.gitignore
@@ -0,0 +1,28 @@
+# Firebase build and deployment files
+/firebase-debug.log
+/firebase-debug.*.log
+.firebaserc
+
+# Firebase Hosting
+/firebase.json
+*.cache
+hosting/.cache
+
+# Firebase Functions
+/functions/node_modules/
+/functions/.env
+/functions/package-lock.json
+
+# Firebase Emulators
+/firebase-*.zip
+/.firebase/
+/emulator-ui/
+
+# Logs
+*.log
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
+
+# Environment files (local configs)
+/.env.*
diff --git a/GitHubPages.gitignore b/GitHubPages.gitignore
new file mode 100644
index 00000000..493e69ba
--- /dev/null
+++ b/GitHubPages.gitignore
@@ -0,0 +1,18 @@
+# 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
+# counterproductive to check this file into the repository.
+# Details at https://github.com/github/pages-gem/issues/768
+Gemfile.lock
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
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/Go.gitignore b/Go.gitignore
index 3b735ec4..6f72f892 100644
--- a/Go.gitignore
+++ b/Go.gitignore
@@ -19,3 +19,7 @@
# Go workspace file
go.work
+go.work.sum
+
+# env file
+.env
diff --git a/IAR.gitignore b/IAR.gitignore
new file mode 100644
index 00000000..a6f6f775
--- /dev/null
+++ b/IAR.gitignore
@@ -0,0 +1,47 @@
+# Compiled binaries
+*.o
+*.bin
+*.elf
+*.hex
+*.map
+*.out
+*.obj
+
+# Trash
+*.bak
+thumbs.db
+*.~*
+
+# IAR Settings
+**/settings/*.crun
+**/settings/*.dbgdt
+**/settings/*.cspy
+**/settings/*.cspy.*
+**/settings/*.xcl
+**/settings/*.dni
+**/settings/*.wsdt
+**/settings/*.wspos
+
+# IAR Debug Exe
+**/Exe/*.sim
+
+# IAR Debug Obj
+**/Obj/*.pbd
+**/Obj/*.pbd.*
+**/Obj/*.pbi
+**/Obj/*.pbi.*
+
+# IAR project "Debug" directory
+Debug/
+
+# IAR project "Release" directory
+Release/
+
+# IAR project settings directory
+settings/
+
+# IAR backup files
+Backup*
+
+# IAR .dep files
+*.dep \ No newline at end of file
diff --git a/KiCad.gitignore b/KiCad.gitignore
index a63bc0e7..59fde34c 100644
--- a/KiCad.gitignore
+++ b/KiCad.gitignore
@@ -16,6 +16,8 @@ _autosave-*
*-save.pro
*-save.kicad_pcb
fp-info-cache
+~*.lck
+\#auto_saved_files#
# Netlist files (exported from Eeschema)
*.net
diff --git a/Kotlin.gitignore b/Kotlin.gitignore
index c48376ee..566e06bf 120000..100644
--- a/Kotlin.gitignore
+++ b/Kotlin.gitignore
@@ -1 +1,27 @@
-Java.gitignore \ No newline at end of file
+# Compiled class file
+*.class
+
+# Log file
+*.log
+
+# BlueJ files
+*.ctxt
+
+# Mobile Tools for Java (J2ME)
+.mtj.tmp/
+
+# Package Files #
+*.jar
+*.war
+*.nar
+*.ear
+*.zip
+*.tar.gz
+*.rar
+
+# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
+hs_err_pid*
+replay_pid*
+
+# Kotlin Gradle plugin data, see https://kotlinlang.org/docs/whatsnew20.html#new-directory-for-kotlin-data-in-gradle-projects
+.kotlin/ \ No newline at end of file
diff --git a/Laravel.gitignore b/Laravel.gitignore
index 297959a1..d5673e32 100644
--- a/Laravel.gitignore
+++ b/Laravel.gitignore
@@ -21,3 +21,10 @@ Homestead.yaml
Homestead.json
/.vagrant
.phpunit.result.cache
+
+/public/build
+/storage/pail
+.env.backup
+.env.production
+.phpactor.json
+auth.json
diff --git a/Modelica.gitignore b/Modelica.gitignore
new file mode 100644
index 00000000..aa2cc996
--- /dev/null
+++ b/Modelica.gitignore
@@ -0,0 +1,42 @@
+# Modelica - an object-oriented language for modeling of cyber-physical systems
+# https://modelica.org/
+# Ignore temporary files, build results, simulation files
+
+## Modelica-specific files
+*~
+*.bak
+*.bak-mo
+*.mof
+\#*\#
+*.moe
+*.mol
+
+## Build artefacts
+*.exe
+*.exp
+*.o
+*.pyc
+
+## Simulation files
+*.mat
+
+## Package files
+*.gz
+*.rar
+*.tar
+*.zip
+
+## Dymola-specific files
+buildlog.txt
+dsfinal.txt
+dsin.txt
+dslog.txt
+dsmodel*
+dsres.txt
+dymosim*
+request
+stat
+status
+stop
+success
+*.
diff --git a/Objective-C.gitignore b/Objective-C.gitignore
index 7801c930..2ebce16e 100644
--- a/Objective-C.gitignore
+++ b/Objective-C.gitignore
@@ -5,23 +5,6 @@
## User settings
xcuserdata/
-## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
-*.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
@@ -59,10 +42,3 @@ fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots/**/*.png
fastlane/test_output
-
-# Code Injection
-#
-# After new code Injection tools there's a generated folder /iOSInjectionProject
-# https://github.com/johnno1962/injectionforxcode
-
-iOSInjectionProject/
diff --git a/Python.gitignore b/Python.gitignore
index 68bc17f9..c2fb7733 100644
--- a/Python.gitignore
+++ b/Python.gitignore
@@ -94,6 +94,12 @@ ipython_config.py
# install all needed dependencies.
#Pipfile.lock
+# UV
+# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
+# This is especially recommended for binary packages to ensure reproducibility, and is more
+# commonly ignored for libraries.
+#uv.lock
+
# poetry
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
# This is especially recommended for binary packages to ensure reproducibility, and is more
@@ -106,8 +112,10 @@ 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
+.pdm-build/
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
__pypackages__/
diff --git a/README.md b/README.md
index 7014eed7..c43b1d0e 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,7 @@ the following resources are a great place to start:
[man]: http://git-scm.com/docs/gitignore
[help]: https://help.github.com/articles/ignoring-files
-[chapter]: https://git-scm.com/book/en/Git-Basics-Recording-Changes-to-the-Repository#_ignoring
+[chapter]: https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#_ignoring
[progit]: http://git-scm.com/book
## Folder structure
diff --git a/ReScript.gitignore b/ReScript.gitignore
new file mode 100644
index 00000000..b7364c93
--- /dev/null
+++ b/ReScript.gitignore
@@ -0,0 +1,3 @@
+/node_modules/
+/lib/
+.bsb.lock
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
diff --git a/Swift.gitignore b/Swift.gitignore
index 330d1674..52fe2f71 100644
--- a/Swift.gitignore
+++ b/Swift.gitignore
@@ -5,23 +5,6 @@
## User settings
xcuserdata/
-## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
-*.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
@@ -66,10 +49,6 @@ playground.xcworkspace
Carthage/Build/
-# Accio dependency management
-Dependencies/
-.accio/
-
# fastlane
#
# It is recommended to not store the screenshots in the git repo.
@@ -81,10 +60,3 @@ fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots/**/*.png
fastlane/test_output
-
-# Code Injection
-#
-# After new code Injection tools there's a generated folder /iOSInjectionProject
-# https://github.com/johnno1962/injectionforxcode
-
-iOSInjectionProject/
diff --git a/TeX.gitignore b/TeX.gitignore
index e9642441..45e1706c 100644
--- a/TeX.gitignore
+++ b/TeX.gitignore
@@ -26,6 +26,7 @@
## Bibliography auxiliary files (bibtex/biblatex/biber):
*.bbl
+*.bbl-SAVE-ERROR
*.bcf
*.blg
*-blx.aux
@@ -39,6 +40,8 @@
*.synctex.gz
*.synctex.gz(busy)
*.pdfsync
+*.rubbercache
+rubber.cache
## Build tool directories for auxiliary files
# latexrun
@@ -138,6 +141,9 @@ acs-*.bib
*.trc
*.xref
+# hypdoc
+*.hd
+
# hyperref
*.brf
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
diff --git a/Unity.gitignore b/Unity.gitignore
index 58cbc825..3496b7cd 100644
--- a/Unity.gitignore
+++ b/Unity.gitignore
@@ -59,6 +59,7 @@ sysinfo.txt
*.apk
*.aab
*.unitypackage
+*.unitypackage.meta
*.app
# Crashlytics generated file
diff --git a/UnrealEngine.gitignore b/UnrealEngine.gitignore
index 6582eaf9..6e0d95fb 100644
--- a/UnrealEngine.gitignore
+++ b/UnrealEngine.gitignore
@@ -47,7 +47,7 @@ SourceArt/**/*.tga
# Binary Files
Binaries/*
-Plugins/*/Binaries/*
+Plugins/**/Binaries/*
# Builds
Build/*
@@ -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/*
diff --git a/VisualStudio.gitignore b/VisualStudio.gitignore
index 8a30d258..a4fe18bd 100644
--- a/VisualStudio.gitignore
+++ b/VisualStudio.gitignore
@@ -82,6 +82,8 @@ StyleCopReport.xml
*.pgc
*.pgd
*.rsp
+# but not Directory.Build.rsp, as it configures directory-level build defaults
+!Directory.Build.rsp
*.sbr
*.tlb
*.tli
diff --git a/Zig.gitignore b/Zig.gitignore
new file mode 100644
index 00000000..3389c86c
--- /dev/null
+++ b/Zig.gitignore
@@ -0,0 +1,2 @@
+.zig-cache/
+zig-out/
diff --git a/community/Alteryx.gitignore b/community/Alteryx.gitignore
new file mode 100644
index 00000000..8fe3c5cd
--- /dev/null
+++ b/community/Alteryx.gitignore
@@ -0,0 +1,44 @@
+# 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
+
+## gitignore reference sites
+# https://git-scm.com/book/en/v2/Git-Basics-Recording-Changes-to-the-Repository#_ignoring
+# 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
diff --git a/community/Hexo.gitignore b/community/Hexo.gitignore
new file mode 100644
index 00000000..570a5e7b
--- /dev/null
+++ b/community/Hexo.gitignore
@@ -0,0 +1,14 @@
+# gitignore template for Hexo sites
+# website: https://hexo.io/
+# Recommended: Node.gitignore
+
+# Ignore generated directory
+public/
+
+# Ignore temp files
+tmp/
+.tmp*
+
+# additional files
+db.json
+.deploy*/
diff --git a/community/Move.gitignore b/community/Move.gitignore
new file mode 100644
index 00000000..b7d406e7
--- /dev/null
+++ b/community/Move.gitignore
@@ -0,0 +1,6 @@
+# Generated by Move
+# will have compiled files
+build/
+
+# Remove possibly saving credentials to the git repository
+.aptos/
diff --git a/community/OpenTofu.gitignore b/community/OpenTofu.gitignore
new file mode 100644
index 00000000..0c736af6
--- /dev/null
+++ b/community/OpenTofu.gitignore
@@ -0,0 +1,42 @@
+# Local .terraform directories
+**/.terraform/*
+
+# .tfstate files
+*.tfstate
+*.tfstate.*
+
+# Crash log files
+crash.log
+crash.*.log
+
+# Exclude all .tfvars files, which are likely to contain sensitive data, such as
+# password, private keys, and other secrets. These should not be part of version
+# control as they are data points which are potentially sensitive and subject
+# to change depending on the environment.
+*.tfvars
+*.tfvars.json
+
+# Ignore override files as they are usually used to override resources locally and so
+# are not checked in
+override.tf
+override.tofu
+override.tf.json
+override.tofu.json
+*_override.tf
+*_override.tofu
+*_override.tf.json
+*_override.tofu.json
+
+# Ignore transient lock info files created by tofu apply
+.terraform.tfstate.lock.info
+
+# Include override files you do wish to add to version control using negated pattern
+# !example_override.tf
+# !example_override.tofu
+
+# Include tfplan files to ignore the plan output of command: tofu plan -out=tfplan
+# example: *tfplan*
+
+# Ignore CLI configuration files
+.terraformrc
+terraform.rc
diff --git a/community/Terragrunt.gitignore b/community/Terragrunt.gitignore
new file mode 100644
index 00000000..ea480863
--- /dev/null
+++ b/community/Terragrunt.gitignore
@@ -0,0 +1,3 @@
+# Ignore the default terragrunt cache directory
+# https://terragrunt.gruntwork.io/docs/features/caching/
+.terragrunt-cache
diff --git a/community/UiPath.gitignore b/community/UiPath.gitignore
new file mode 100644
index 00000000..ef7754ae
--- /dev/null
+++ b/community/UiPath.gitignore
@@ -0,0 +1,11 @@
+# gitignore template for RPA development using UiPath Studio
+# website: https://www.uipath.com/product/studio
+#
+# Recommended: n/a
+
+# Ignore folders that could cause issues if accidentally tracked
+**/.local/**
+**/.settings/**
+**/.objects/**
+**/.tmh/**
+**/*.log