aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #4458 from navan0/patch-1HEADmainDaniel Johnson3 days1-0/+3
|\ | | | | Update Python.gitignore
| * Update Python.gitignoreNavaneeth Anand2024-06-041-0/+3
| | | | | | Add .pypirc to protect sensitive information
* | Merge pull request #4424 from loupeteam/br-automation-studioDaniel Johnson4 days1-0/+31
|\ \ | | | | | | Add gitignore template for Automation Studio Projects
| * | Rename AutomationStudio4.gitignore to AutomationStudio, and move to ↵Shane Reetz2024-10-111-0/+0
| | | | | | | | | | | | Community folder
| * | Remove OS-specific files from gitignoreShane Reetz2024-05-291-5/+0
| | |
| * | Add gitignore template for Automation Studio 4Shane Reetz2024-03-251-0/+36
| | |
* | | Merge pull request #4442 from zhiyuanzhai/patch-1Daniel Johnson4 days1-0/+1
|\ \ \ | | | | | | | | Add `*.bbl-SAVE-ERROR` TeX.gitignore
| * | | Update TeX.gitignorezhiyuanzhai2024-05-061-0/+1
| |/ / | | | | | | Adding `*.bbl-SAVE-ERROR` to `gitignore` for LaTeX.
* | | Merge pull request #4539 from dietmarw/addModelicaDaniel Johnson4 days1-0/+42
|\ \ \ | | | | | | | | Add gitignore for Modelica
| * | | Remove OS specific settings covered by globalsDietmar Winkler4 days1-3/+0
| | | |
| * | | Adds some more OS specific file to the ignore listDietmar Winkler2024-11-141-1/+8
| | | |
| * | | Ignore flattened Modelicatobolar2023-01-131-1/+2
| | | |
| * | | Add gitignore for Modelicatobolar2023-01-131-0/+37
| |/ /
* | | Merge pull request #4542 from DrDead0/feature/firebase-gitignoreTim Hunter4 days1-0/+28
|\ \ \ | | | | | | | | added gitignore for firebase
| * | | Updated Firebase.gitignore based on feedback: scoped to Firebase, removed ↵DrDead08 days1-17/+1
| | | | | | | | | | | | | | | | unrelated entries
| * | | added gitignore for firebaseDrDead02024-12-011-0/+44
| | | |
* | | | Merge pull request #4544 from daniel-shuy/feature/kotlin-2Daniel Johnson2024-12-061-1/+27
|\ \ \ \ | | | | | | | | | | Update for Kotlin 2.x.x
| * | | | Update for Kotlin 2.x.xDaniel Shuy2024-12-021-1/+27
| |/ / / | | | | | | | | | | | | | | | | | | | | Ignore Kotlin data directory for Kotlin Gradle plugin Signed-off-by: Daniel Shuy <17351764+daniel-shuy@users.noreply.github.com>
* | | | Merge pull request #4545 from KalleDK/patch-1Daniel Johnson2024-12-061-0/+6
|\ \ \ \ | | | | | | | | | | Added uv.lock alongside pdm and poetry
| * | | | Added uv.lock alongside pdm and poetryKalle Møller2024-12-031-0/+6
|/ / / /
* | | | Merge pull request #4000 from tracetronic/create-ecu-test-gitignoreTim Hunter2024-12-021-0/+62
|\ \ \ \ | |/ / / |/| | |
| * | | Highlight origin of .gitignoreSebastian Dietze2022-10-171-1/+1
| | | |
| * | | Create gitignore file for ECU-TEST workspacesSebastian Dietze2022-10-171-0/+62
| | | |
* | | | Merge pull request #4540 from moser-jose/moserjTim Hunter2024-11-271-0/+7
|\ \ \ \ | | | | | | | | | | included lines in Laravel.gitignore file
| * | | | remove lines /.fleet /.idea /.nova /.vscode /.zedmoser-jose2024-11-261-5/+0
| | | | |
| * | | | included lines in Laravel.gitignore filemoser-jose2024-11-211-0/+12
| | | | |
* | | | | Merge pull request #4173 from jmarsh411/mainTim Hunter2024-11-231-0/+1
|\ \ \ \ \ | |/ / / / |/| | | |
| * | | | ignore meta files of unity packagesJosh Marshall2022-10-171-0/+1
| |/ / / | | | | | | | | | | | | | | | | Unity packages were already ignored, but it seems in recent versions of Unity these also generate meta files for these. If the meta file isn't also ignored, the person who imports an asset containing a .unitypackage file could accidentally commit the meta files. For another who downloads those meta files, Unity would automatically delete them since they don't have the .unitypackage. The the importer commits them again and the cycle goes on and on until someone like me gets fed up. This fixes that inconsistency by adding the *.unitypackage.meta to the ignore list.
* | | | Merge pull request #4520 from mediowen/mainTim Hunter2024-11-191-0/+42
|\ \ \ \ | | | | | | | | | | Add OpenTofu to community
| * | | | Add OpenTofu to communityOwen Valentine2024-10-161-0/+42
| | | | |
* | | | | Merge pull request #4512 from mergenci/fix-broken-links-to-git-bookDaniel Johnson2024-11-192-2/+2
|\ \ \ \ \ | | | | | | | | | | | | Fix broken links to Git book
| * | | | | Fix broken links to Git book.Cem Mergenci2024-09-272-2/+2
| | | | | |
* | | | | | Merge pull request #4493 from MattKotsenas/patch-1Devin Dooley2024-10-171-0/+2
|\ \ \ \ \ \ | |_|/ / / / |/| | | | | Exclude Directory.Build.rsp from VisualStudio.gitignore template
| * | | | | Update VisualStudio.gitignoreMatt Kotsenas2024-08-141-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | `Directory.Build.rsp` is a [documented file][1] that allows setting default arguments to command line builds. However, our .gitignore template ignores _all_ `*.rsp` files. which causes confusion: 1. Devs write an .rsp file and if they aren't being attentive forget to commit it 2. Adding it to git requires `git add --force`, which some devs mistake for a destructive or not-recommended action Thus, explicitly allow the `Directory.Build.rsp` file. [1]: https://learn.microsoft.com/en-us/visualstudio/msbuild/msbuild-response-files?view=vs-2022#directorybuildrsp
* | | | | | Merge pull request #4408 from gregnazario/add-moveDevin Dooley2024-10-151-0/+6
|\ \ \ \ \ \ | | | | | | | | | | | | | | Adds Move language
| * | | | | | Adds Move languageGreg Nazario2024-10-021-0/+6
| | |_|_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move language is used for MoveVM based blockchains as the language native to them. The compiler provides a folder build/ that holds the build artifacts. The .aptos/ folder is ignored so people do not upload their private keys to a git repository.
* | | | | | Merge pull request #4388 from loozhengyuan/feat/update-kicad-temp-filesDaniel Johnson2024-10-041-0/+2
|\ \ \ \ \ \ | |_|_|/ / / |/| | | | | feat: add KiCad lock/autosave files
| * | | | | feat: add KiCad lock/autosave filesLoo Zheng Yuan2023-12-271-0/+2
| | |_|_|/ | |/| | |
* | | | | Merge pull request #4503 from bschaatsbergen/f/add-zig-ignoreDevin Dooley2024-09-091-3/+1
|\ \ \ \ \ | | | | | | | | | | | | chore: change `zig-cache/` to `.zig-cache/`
| * \ \ \ \ Merge branch 'main' into f/add-zig-ignoreBruno Schaatsbergen2024-09-090-0/+0
| |\ \ \ \ \ | |/ / / / / |/| | | | |
* | | | | | Merge pull request #3975 from svc-user/mainDevin Dooley2024-09-091-0/+4
|\ \ \ \ \ \ | | | | | | | | | | | | | | Create Zig.gitignore
| * | | | | | Create Zig.gitignoreBick Doner2022-02-161-0/+4
| | | | | | |
| | * | | | | feat: add Zig.gitignoreBruno Schaatsbergen2024-09-071-0/+2
| |/ / / / / |/| | | | | | | | | | | | | | | | | Signed-off-by: Bruno Schaatsbergen <git@bschaatsbergen.com>
* | | | | | Merge pull request #4485 from SunnyCloudYang/mainDevin Dooley2024-08-311-0/+14
|\ \ \ \ \ \ | | | | | | | | | | | | | | Create Hexo.gitignore
| * \ \ \ \ \ Merge branch 'main' of https://github.com/SunnyCloudYang/gitignoreYunyang2024-08-312-0/+6
| |\ \ \ \ \ \
| | * \ \ \ \ \ Merge branch 'github:main' into mainGoodNullName2024-08-312-0/+6
| | |\ \ \ \ \ \ | |_|/ / / / / / |/| | | | | | |
* | | | | | | | Merge pull request #4445 from costaparas/feature/update-terraformDaniel Johnson2024-08-301-0/+3
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | Ignore terragrunt cache
| * | | | | | | | Migrate terragrunt ignore to new template as suggestedCosta Paraskevopoulos2024-05-312-4/+3
| | | | | | | | |
| * | | | | | | | Ignore terragrunt cacheCosta Paraskevopoulos2024-05-131-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This excludes the common/default location from source control Docs: https://terragrunt.gruntwork.io/docs/features/caching/
* | | | | | | | | Merge pull request #4449 from brettcannon/rescriptDaniel Johnson2024-08-301-0/+3
|\ \ \ \ \ \ \ \ \ | |_|_|_|_|_|_|/ / |/| | | | | | | | Create ReScript.gitignore