From e4fe44e75e1bb8dcc6cb181ffcc24bfbf9aa0321 Mon Sep 17 00:00:00 2001 From: samuelfavreaubdeb Date: Sat, 28 Feb 2026 17:16:15 -0500 Subject: [PATCH 1/3] Add .gitignore for TouchDesigner project --- TouchDesigner.gitignore | 68 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 TouchDesigner.gitignore diff --git a/TouchDesigner.gitignore b/TouchDesigner.gitignore new file mode 100644 index 0000000000..55ff0638a4 --- /dev/null +++ b/TouchDesigner.gitignore @@ -0,0 +1,68 @@ +# Backups +Backup/ +*/Backup/ + + +# Autosaves +CrashAutoSave.* +*/CrashAutoSave.* +*.dmp + + +# TouchDesigner import cache +TDImportCache/ +*/TDImportCache/ + + +# Logs +*.log +logs/ +*/logs/ + + +# Increment files on save +*.*.toe +*/*.*.toe +*Autosave*.toe + + +# Python / build artifacts +__pycache__/ +*.pyc +*.pyo + + +# Visual Studio cache directory +.vs/ + + +# IDE / editor settings +.vscode/* +!.vscode/extensions.json +.idea +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? +*.code-workspace + + +# Executables +*.exe +*.out +*.app +*.ipa + + +# macOS +.DS_Store +.AppleDouble +.LSOverride + + +# Windows +Thumbs.db +ehthumbs.db +Desktop.ini +$RECYCLE.BIN/ From 73479dae4fad90863758f76f7efd13652903536a Mon Sep 17 00:00:00 2001 From: Samuel Favreau Date: Mon, 1 Jun 2026 17:00:54 -0400 Subject: [PATCH 2/3] Removing extra line spaces + Removing off topic flags for Windows and MacOS --- TouchDesigner.gitignore | 23 +---------------------- 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/TouchDesigner.gitignore b/TouchDesigner.gitignore index 55ff0638a4..2884ebd634 100644 --- a/TouchDesigner.gitignore +++ b/TouchDesigner.gitignore @@ -2,40 +2,33 @@ Backup/ */Backup/ - # Autosaves CrashAutoSave.* */CrashAutoSave.* *.dmp - # TouchDesigner import cache TDImportCache/ */TDImportCache/ - # Logs *.log logs/ */logs/ - # Increment files on save *.*.toe */*.*.toe *Autosave*.toe - # Python / build artifacts __pycache__/ *.pyc *.pyo - # Visual Studio cache directory .vs/ - # IDE / editor settings .vscode/* !.vscode/extensions.json @@ -47,22 +40,8 @@ __pycache__/ *.sw? *.code-workspace - # Executables *.exe *.out *.app -*.ipa - - -# macOS -.DS_Store -.AppleDouble -.LSOverride - - -# Windows -Thumbs.db -ehthumbs.db -Desktop.ini -$RECYCLE.BIN/ +*.ipa \ No newline at end of file From 56d805eaaabff531e3201546941cae78cfca0fb3 Mon Sep 17 00:00:00 2001 From: Samuel Favreau Date: Mon, 1 Jun 2026 17:06:42 -0400 Subject: [PATCH 3/3] Remove repetitions by using single recursive pattern --- TouchDesigner.gitignore | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/TouchDesigner.gitignore b/TouchDesigner.gitignore index 2884ebd634..ec5cdc7eed 100644 --- a/TouchDesigner.gitignore +++ b/TouchDesigner.gitignore @@ -1,24 +1,19 @@ # Backups -Backup/ -*/Backup/ +**/Backup/ # Autosaves -CrashAutoSave.* -*/CrashAutoSave.* +**/CrashAutoSave.* *.dmp # TouchDesigner import cache -TDImportCache/ -*/TDImportCache/ +**/TDImportCache/ # Logs *.log -logs/ -*/logs/ +**/logs/ # Increment files on save -*.*.toe -*/*.*.toe +**/*.*.toe *Autosave*.toe # Python / build artifacts @@ -32,7 +27,7 @@ __pycache__/ # IDE / editor settings .vscode/* !.vscode/extensions.json -.idea +.idea/ *.suo *.ntvs* *.njsproj