Compare commits

...

15 Commits

Author SHA1 Message Date
Huldar
ebd4c61412
Merge 0a25801fa9 into 4d89c5d3e2 2026-04-18 10:31:24 +00: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
Daniel Johnson
1a7b75fb11
Merge pull request #4705 from EndrII/patch-2
[Qt/QML] Added .qmlls.ini to ignore
2026-04-17 15:00:07 -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
Andrei Yankovich
ebc4db855a
Added .qmlls.ini to ignore
The **.qmlls.ini** files are auto generated files for qt creator qml language tool.

See documentation [QT_QML_GENERATE_QMLLS_INI](https://doc.qt.io/qt-6/cmake-variable-qt-qml-generate-qmlls-ini.html)
2025-08-08 19:49:49 +03:00
G0rocks
0a25801fa9 Add FreeCAD.gitignore file 2025-08-06 10:11:36 +00:00
6 changed files with 51 additions and 0 deletions

4
FreeCAD.gitignore Normal file
View File

@ -0,0 +1,4 @@
# FreeCAD backup and temporary files
*.FC.lock
*.bak
*.tmp

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,8 +29,10 @@ ui_*.h
*.jsc
Makefile*
*build-*
build/
*.qm
*.prl
*.qmlls.ini
# Qt unit tests
target_wrapper.*

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/