Compare commits

...

14 Commits

Author SHA1 Message Date
Bernd
45c566c971
Merge 5f5a92fcfe into 4d89c5d3e2 2026-04-20 07:11:46 +00: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
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
6 changed files with 48 additions and 0 deletions

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)
**/*-backups/*.zip
# Local git-based history (KiCad 9.0+)
.history
# Local project settings
*.kicad_prl

View File

@ -29,6 +29,7 @@ ui_*.h
*.jsc
Makefile*
*build-*
build/
*.qm
*.prl
*.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/