Skip to content

Commit 4ae311e

Browse files
committed
Merge remote-tracking branch 'origin' into remove-duplicate-template
2 parents 13d15e9 + 3780fff commit 4ae311e

31 files changed

Lines changed: 555 additions & 82 deletions

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,6 @@ _TODO_
1919
Link to the project docs, any existing .gitignore files that project may have in its own repo, etc
2020
--->
2121

22-
### If this is a new template
23-
24-
Link to application or project’s homepage: TODO
25-
2622
### Merge and Approval Steps
2723

2824
<!---

C++.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
*.dll
2424
*.so.*
2525

26-
2726
# Fortran module files
2827
*.mod
2928
*.smod

Global/Agents.gitignore

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
# AI agents and assistants
2+
#
3+
# Some common agent instruction and project configuration files are listed
4+
# below as commented-out examples. They are often intentionally committed and
5+
# shared with a team, so only uncomment them if they are local-only in your
6+
# project.
7+
8+
# GEMINI.md
9+
# WARP.md
10+
# CRUSH.md
11+
# QWEN.md
12+
13+
# OpenAI Codex
14+
# AGENTS.md
15+
# .codex/
16+
17+
# Aider
18+
.aider.input.history
19+
.aider.chat.history.md
20+
.aider.llm.history
21+
.aider.tags.cache.v*
22+
# .aiderignore
23+
24+
# Claude Code
25+
.claude/*.local.json
26+
.claude/**/*.log
27+
CLAUDE.local.md
28+
# .claude/
29+
30+
# Gemini CLI
31+
gemini-debug.log
32+
.gemini-clipboard/
33+
# .gemini/
34+
35+
# Cursor AI
36+
# .cursorrules
37+
# .cursor/
38+
# .cursor.json
39+
# .cursor-settings.yaml
40+
41+
# Continue
42+
# .continue/
43+
# .continuerc.json
44+
45+
# Cline
46+
# .cline/
47+
# .clinerules
48+
# cline.json
49+
50+
# Other agent/editor project config
51+
# .warp/
52+
# .crush/
53+
# .codeium/
54+
# .deepseek/
55+
# .amazon-codewhisperer/
56+
# .tabnineignore
57+
# .tabnine/
58+
59+
# GitHub Copilot
60+
# .github/copilot-instructions.md
61+
62+
# Windsurf Editor
63+
# .windsurfrules
64+
# .windsurf/
65+
66+
# Replit AI Development
67+
# .replit
68+
# replit.nix

Global/Ansible.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
*.retry
1+
# The default root path for Ansible config files on the controller
22
.ansible/
3+
4+
# Retry files generated for failed Ansible playbook runs
5+
*.retry

Global/Backup.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
1+
# Generic backup files
12
*.bak
3+
*.back
4+
*.backup
5+
6+
# Norton Ghost backup files
27
*.gho
8+
9+
# Generic original files
310
*.ori
411
*.orig
12+
*.original
13+
14+
# Generic temporary files
515
*.tmp
16+
*.temp
17+
*.temporary

Global/JetBrains.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ atlassian-ide-plugin.xml
6363

6464
# SonarLint plugin
6565
.idea/sonarlint/
66-
.idea/sonarlint.xml # see https://community.sonarsource.com/t/is-the-file-idea-idea-idea-sonarlint-xml-intended-to-be-under-source-control/121119
66+
# see https://community.sonarsource.com/t/is-the-file-idea-idea-idea-sonarlint-xml-intended-to-be-under-source-control/121119
67+
.idea/sonarlint.xml
6768

6869
# Crashlytics plugin (for Android Studio and IntelliJ)
6970
com_crashlytics_export_strings.xml

Global/MATLAB.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
*.autosave
55
*.slx.r*
66
*.mdl.r*
7+
*.bak
78

89
# Derived content-obscured files
910
*.p

Global/OhMyOpenAgent.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.sisyphus/*
2+
!.sisyphus/rules/

Global/VirtualEnv.gitignore

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,20 @@
11
# Virtualenv
22
# https://realpython.com/python-virtual-environments-a-primer/#the-virtualenv-project
3+
.venv/
4+
venv/
5+
.python-version
6+
7+
# pyenv: Simple Python Version Management
8+
pyvenv.cfg
9+
10+
# pip: package installer for Python
11+
pip-selfcheck.json
12+
13+
# Custom python interpreter
314
.Python
415
[Bb]in
516
[Ii]nclude
617
[Ll]ib
718
[Ll]ib64
819
[Ll]ocal
920
[Ss]cripts
10-
pyvenv.cfg
11-
.venv
12-
pip-selfcheck.json

Global/VisualStudioCode.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Visual Studio Code
12
.vscode/*
23
!.vscode/settings.json
34
!.vscode/tasks.json

0 commit comments

Comments
 (0)