Skip to content

Commit ef50fb9

Browse files
authored
Merge branch 'main' into main
2 parents 5bb8f06 + db90803 commit ef50fb9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+915
-46
lines changed

.github/CODEOWNERS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Order is important. The LAST matching pattern has the MOST precedence.
2+
# gitignore style patterns are used, not globs.
3+
# https://docs.github.com/articles/about-codeowners
4+
# https://git-scm.com/docs/gitignore
5+
6+
# Catch All - Defer to the gitignore maintainers
7+
* @github/gitignore-maintainers

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,23 @@
1-
**Reasons for making this change:**
2-
<!-- Include your relationship to the project and what you expect to get from this change. -->
1+
### Reasons for making this change
32

43
_TODO_
4+
<!---
5+
Please provide some background for this change.
6+
--->
57

6-
**Links to documentation supporting these rule changes:**
8+
### Links to documentation supporting these rule changes
79

810
_TODO_
911

10-
If this is a new template:
12+
<!---
13+
Link to the project docs, any existing .gitignore files that project may have in it's own repo, etc
14+
--->
1115

12-
- **Link to application or project’s homepage**: _TODO_
16+
### If this is a new template
17+
18+
Link to application or project’s homepage: TODO
19+
20+
### Merge and Approval Steps
21+
- [ ] Confirm that you've read the [contribution guidelines](https://github.com/github/gitignore/tree/main?tab=readme-ov-file#contributing-guidelines) and ensured your PR aligns
22+
- [ ] Ensure CI is passing
23+
- [ ] Get a review and Approval from one of the maintainers

.github/workflows/stale.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Stale
2+
3+
# **What it does**: Close pull requests after no updates for 180 days.
4+
# **Why we have it**: This repository gets a lot of PRs, and the maintainers team is small.
5+
# This helps reduce the open PRs to ones that are most desired by the community.
6+
# **Who does it impact**: Contributors and maintainers of github/gitignore.
7+
8+
on:
9+
schedule:
10+
- cron: '20 16 * * *' # Run every day at 16:20 UTC / 8:20 PST
11+
12+
permissions:
13+
actions: write
14+
contents: write # only for delete-branch option
15+
issues: write
16+
pull-requests: write
17+
18+
jobs:
19+
stale:
20+
runs-on: ubuntu-latest
21+
steps:
22+
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
23+
with:
24+
stale-pr-message: 'This PR is stale because there have been no updates in 90 days. It will close after 180 days of inactivity. Leave a comment if you want to keep it open :smile:'
25+
close-pr-message: 'This PR has been closed because it was inactive for 180 days. If you want to continue working on it, please open a new PR.'
26+
days-before-stale: 90
27+
days-before-close: 180
28+
stale-pr-label: 'stale'
29+
exempt-pr-labels: 'keep'
30+
close-issue-reason: not_planned
31+
ascending: true # Sort PRs by last updated date in ascending order

AdventureGameStudio.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Built things
2+
_Debug/
3+
Compiled/
4+
5+
# AudioCache can be rebuilt from sources
6+
AudioCache/
7+
8+
# Lockfile
9+
_OpenInEditor.lock
10+
11+
# User settings
12+
Game.agf.user
13+
*.crm.user
14+
15+
# Backups
16+
Game.agf.bak
17+
backup_acsprset.spr
18+
19+
# Memory dumps
20+
*.dmp
21+
22+
# Temporary files
23+
# temporarily created during sprite or room background compression
24+
~aclzw.tmp
25+
# temporary, main game data, before getting packed into exe
26+
game28.dta
27+
# temporary build of the game before being moved to Compiled/ folder
28+
*.exe
29+
30+
# Log files
31+
warnings.log

Android.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ captures/
1313
.externalNativeBuild/
1414
.cxx/
1515
*.apk
16-
output.json
16+
output-metadata.json
1717

1818
# IntelliJ
1919
*.iml

CMake.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,10 @@ compile_commands.json
1010
CTestTestfile.cmake
1111
_deps
1212
CMakeUserPresets.json
13+
14+
# CLion
15+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
16+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
17+
# and can be added to the global gitignore or merged into this file. For a more nuclear
18+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
19+
#cmake-build-*

Dotnet.gitignore

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
## A streamlined .gitignore for modern .NET projects
2+
## including temporary files, build results, and
3+
## files generated by popular .NET tools. If you are
4+
## developing with Visual Studio, the VS .gitignore
5+
## https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
6+
## has more thorough IDE-specific entries.
7+
##
8+
## Get latest from https://github.com/github/gitignore/blob/main/Dotnet.gitignore
9+
10+
# Build results
11+
[Dd]ebug/
12+
[Dd]ebugPublic/
13+
[Rr]elease/
14+
[Rr]eleases/
15+
x64/
16+
x86/
17+
[Ww][Ii][Nn]32/
18+
[Aa][Rr][Mm]/
19+
[Aa][Rr][Mm]64/
20+
bld/
21+
[Bb]in/
22+
[Oo]bj/
23+
[Ll]og/
24+
[Ll]ogs/
25+
26+
# .NET Core
27+
project.lock.json
28+
project.fragment.lock.json
29+
artifacts/
30+
31+
# ASP.NET Scaffolding
32+
ScaffoldingReadMe.txt
33+
34+
# NuGet Packages
35+
*.nupkg
36+
# NuGet Symbol Packages
37+
*.snupkg
38+
39+
# Others
40+
~$*
41+
*~
42+
CodeCoverage/
43+
44+
# MSBuild Binary and Structured Log
45+
*.binlog
46+
47+
# MSTest test Results
48+
[Tt]est[Rr]esult*/
49+
[Bb]uild[Ll]og.*
50+
51+
# NUnit
52+
*.VisualState.xml
53+
TestResult.xml
54+
nunit-*.xml

Elisp.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22
*.elc
33

44
# Packaging
5-
.cask
5+
.cask/
6+
.eask/
7+
.eldev/
8+
.keg/
9+
10+
# Built distribution
11+
dist/
612

713
# Backup files
814
*~

Firebase.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Firebase build and deployment files
2+
/firebase-debug.log
3+
/firebase-debug.*.log
4+
.firebaserc
5+
6+
# Firebase Hosting
7+
/firebase.json
8+
*.cache
9+
hosting/.cache
10+
11+
# Firebase Functions
12+
/functions/node_modules/
13+
/functions/.env
14+
/functions/package-lock.json
15+
16+
# Firebase Emulators
17+
/firebase-*.zip
18+
/.firebase/
19+
/emulator-ui/
20+
21+
# Logs
22+
*.log
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
27+
# Environment files (local configs)
28+
/.env.*

Flutter.gitignore

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
# Miscellaneous
2+
*.class
3+
*.lock
4+
*.log
5+
*.pyc
6+
*.swp
7+
.buildlog/
8+
.history
9+
10+
11+
12+
# Flutter repo-specific
13+
/bin/cache/
14+
/bin/internal/bootstrap.bat
15+
/bin/internal/bootstrap.sh
16+
/bin/mingit/
17+
/dev/benchmarks/mega_gallery/
18+
/dev/bots/.recipe_deps
19+
/dev/bots/android_tools/
20+
/dev/devicelab/ABresults*.json
21+
/dev/docs/doc/
22+
/dev/docs/flutter.docs.zip
23+
/dev/docs/lib/
24+
/dev/docs/pubspec.yaml
25+
/dev/integration_tests/**/xcuserdata
26+
/dev/integration_tests/**/Pods
27+
/packages/flutter/coverage/
28+
version
29+
analysis_benchmark.json
30+
31+
# packages file containing multi-root paths
32+
.packages.generated
33+
34+
# Flutter/Dart/Pub related
35+
**/doc/api/
36+
.dart_tool/
37+
.flutter-plugins
38+
.flutter-plugins-dependencies
39+
**/generated_plugin_registrant.dart
40+
.packages
41+
.pub-preload-cache/
42+
.pub/
43+
build/
44+
flutter_*.png
45+
linked_*.ds
46+
unlinked.ds
47+
unlinked_spec.ds
48+
49+
# Android related
50+
**/android/**/gradle-wrapper.jar
51+
.gradle/
52+
**/android/captures/
53+
**/android/gradlew
54+
**/android/gradlew.bat
55+
**/android/local.properties
56+
**/android/**/GeneratedPluginRegistrant.java
57+
**/android/key.properties
58+
*.jks
59+
60+
# iOS/XCode related
61+
**/ios/**/*.mode1v3
62+
**/ios/**/*.mode2v3
63+
**/ios/**/*.moved-aside
64+
**/ios/**/*.pbxuser
65+
**/ios/**/*.perspectivev3
66+
**/ios/**/*sync/
67+
**/ios/**/.sconsign.dblite
68+
**/ios/**/.tags*
69+
**/ios/**/.vagrant/
70+
**/ios/**/DerivedData/
71+
**/ios/**/Icon?
72+
**/ios/**/Pods/
73+
**/ios/**/.symlinks/
74+
**/ios/**/profile
75+
**/ios/**/xcuserdata
76+
**/ios/.generated/
77+
**/ios/Flutter/.last_build_id
78+
**/ios/Flutter/App.framework
79+
**/ios/Flutter/Flutter.framework
80+
**/ios/Flutter/Flutter.podspec
81+
**/ios/Flutter/Generated.xcconfig
82+
**/ios/Flutter/ephemeral
83+
**/ios/Flutter/app.flx
84+
**/ios/Flutter/app.zip
85+
**/ios/Flutter/flutter_assets/
86+
**/ios/Flutter/flutter_export_environment.sh
87+
**/ios/ServiceDefinitions.json
88+
**/ios/Runner/GeneratedPluginRegistrant.*
89+
90+
# macOS
91+
**/Flutter/ephemeral/
92+
**/Pods/
93+
**/macos/Flutter/GeneratedPluginRegistrant.swift
94+
**/macos/Flutter/ephemeral
95+
**/xcuserdata/
96+
97+
# Windows
98+
**/windows/flutter/generated_plugin_registrant.cc
99+
**/windows/flutter/generated_plugin_registrant.h
100+
**/windows/flutter/generated_plugins.cmake
101+
102+
# Linux
103+
**/linux/flutter/generated_plugin_registrant.cc
104+
**/linux/flutter/generated_plugin_registrant.h
105+
**/linux/flutter/generated_plugins.cmake
106+
107+
# Coverage
108+
coverage/
109+
110+
# Symbols
111+
app.*.symbols
112+
113+
# Exceptions to above rules.
114+
!**/ios/**/default.mode1v3
115+
!**/ios/**/default.mode2v3
116+
!**/ios/**/default.pbxuser
117+
!**/ios/**/default.perspectivev3
118+
!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages
119+
!/dev/ci/**/Gemfile.lock

0 commit comments

Comments
 (0)