Compare commits

...

16 Commits

Author SHA1 Message Date
Chua CheeWee
39acc14874
Merge 660bd643e1 into 25713eb3a5 2026-04-20 09:33:04 -07:00
Devin Dooley
25713eb3a5
Merge pull request #4808 from malheleco/oh-my-opencode
Add gitignore to exclude sisyphus directory files (oh-my-openagent formerly known as oh-my-opencode)
2026-04-20 09:32:49 -07:00
Bernd
5f5a92fcfe
move gitignore template due to PR feedback 2026-04-20 09:11:43 +02:00
Devin Dooley
4d89c5d3e2
Merge pull request #4813 from danilofroes/solidworks-gitignore
Add gitignore for SolidWorks projects
2026-04-17 16:22:17 -07:00
Devin Dooley
aef8819a8f
Merge pull request #4815 from mvanhorn/osc/zed-gitignore
Add Zed editor to Global gitignore templates
2026-04-17 16:15:20 -07:00
Devin Dooley
8f5497c4be
Merge pull request #4817 from mvanhorn/osc/tauri-gitignore
Add Tauri to community gitignore templates
2026-04-17 16:10:58 -07:00
Devin Dooley
70da24ee68
Merge pull request #4838 from add-uos/feat-qt-add-build-dir
feat(qt): add build directory to gitignore
2026-04-17 16:05:53 -07:00
Devin Dooley
4def375658
Merge pull request #4841 from DeflateAwning/deflateawning-kicad-v9-history
KiCad: Add `.history` folder to template
2026-04-17 15:57:09 -07:00
DeflateAwning
5b24c9042d KiCad: Add .history folder to template 2026-04-11 23:33:55 -06:00
Chua CheeWee
660bd643e1
Update Delphi.gitignore
Added RAD Studio 13.1 WinARM64EC directory and DUnitX results
2026-04-10 14:15:41 +08:00
zhanghongyuan
7441291fc8 feat(qt): add build directory to gitignore 2026-04-07 10:27:46 +08:00
Matt Van Horn
3b288cfb37 Add Tauri to community gitignore templates 2026-03-17 15:35:54 -07:00
Matt Van Horn
e81fea5f71 Add Zed editor to Global gitignore templates 2026-03-17 15:33:15 -07:00
Danilo Fróes
c97a73771f
Enhance SolidWorks.gitignore for case sensitivity
Added case-sensitive entries for SolidWorks temporary files and backups.
2026-03-15 16:36:41 -03:00
Danilo Fróes
7db9624f69 Add gitignore for SolidWorks projects 2026-03-15 16:22:30 -03:00
Bernd
a850db9d75
Add gitignore to exclude sisyphus directory files
oh-my-opencode excludes the sisyphus working directory in their own repo, so it seems to be best practice. Also, the directory captures agent/runtime state, so it should not be shared.
2026-03-03 16:51:34 +01:00
7 changed files with 61 additions and 9 deletions

View File

@ -28,15 +28,16 @@
# Default Delphi compiler directories # Default Delphi compiler directories
# Content of this directories are generated with each Compile/Construct of a project. # 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. # Most of the time, files here do not have a place in a code repository.
#Win32/ Win32/
#Win64/ Win64/
#OSX64/ OSX64/
#OSXARM64/ OSXARM64/
#Android/ Android/
#Android64/ Android64/
#iOSDevice64/ iOSDevice64/
#Linux64/ Linux64/
WinARM64EC/
# Delphi compiler-generated binaries (safe to delete) # Delphi compiler-generated binaries (safe to delete)
*.exe *.exe
@ -80,3 +81,6 @@ __recovery/
# Boss dependency manager vendor folder https://github.com/HashLoad/boss # Boss dependency manager vendor folder https://github.com/HashLoad/boss
modules/ modules/
# DUnitX test result
dunitx-results.xml

View File

@ -0,0 +1,2 @@
.sisyphus/*
!.sisyphus/rules/

10
Global/Zed.gitignore Normal file
View File

@ -0,0 +1,10 @@
# Zed
# https://zed.dev/docs/configuring-zed#settings-files
#
# Zed stores project settings in a .zed/ directory, similar to .vscode/.
# By default, ignore the directory but allow commonly shared config files.
.zed/*
!.zed/settings.json
!.zed/tasks.json
!.zed/debug.json

View File

@ -36,5 +36,8 @@ fp-info-cache
# Archived Backups (KiCad 6.0) # Archived Backups (KiCad 6.0)
**/*-backups/*.zip **/*-backups/*.zip
# Local git-based history (KiCad 9.0+)
.history
# Local project settings # Local project settings
*.kicad_prl *.kicad_prl

View File

@ -29,6 +29,7 @@ ui_*.h
*.jsc *.jsc
Makefile* Makefile*
*build-* *build-*
build/
*.qm *.qm
*.prl *.prl
*.qmlls.ini *.qmlls.ini

20
SolidWorks.gitignore Normal file
View File

@ -0,0 +1,20 @@
# gitignore file for a SolidWorks project
# SolidWorks temporary files
~$*.sldprt
~$*.sldasm
~$*.slddrw
~$*.sld
# For systems with case-sensitive (SolidWorks uses both)
~$*.SLDPRT
~$*.SLDASM
~$*.SLDDRW
~$*.SLD
# SolidWorks backups and auto-recovery
*.bak
*.swbak
# Cache of simulation results
/simulation_results/

12
community/Tauri.gitignore Normal file
View File

@ -0,0 +1,12 @@
# Tauri
# https://tauri.app/
#
# Recommended: Rust.gitignore
# Rust compilation output
# https://doc.rust-lang.org/cargo/guide/build-cache.html
target/
# WiX Toolset cache (Windows MSI installer builds)
# https://v2.tauri.app/distribute/windows-installer/
WixTools/