.gitignore for Processing
10 ignore rules for Processing, ready to copy into your repository.
Flexible software sketchbook
The complete .gitignore for Processing
# Generated by LFGitignore - https://lfgitignore.com
# Created: 2026-08-05 01:27:17 UTC
# Technologies: Processing
### Processing ###
# macOS folder settings (Desktop Services Store)
.DS_Store
applet
application.linux-arm64
application.linux-armv6hf
application.linux32
application.linux64
application.windows32
application.windows64
application.macosx
# Next.js static export
out
What these Processing rules actually ignore
Every pattern below, and why it belongs in your .gitignore.
General
| Pattern | What it ignores |
|---|---|
.DS_Store |
macOS folder settings (Desktop Services Store) |
applet |
General |
application.linux-arm64 |
General |
application.linux-armv6hf |
General |
application.linux32 |
General |
application.linux64 |
General |
application.windows32 |
General |
application.windows64 |
General |
application.macosx |
General |
out |
Next.js static export |
How to use this .gitignore for Processing
- Copy the Processing rules above, or download the file directly.
- Create a file named .gitignore at the root of your Git repository and paste the rules into it.
- If some of those files are already tracked, run git rm -r --cached . then commit again — Git only applies ignore rules to untracked files.
- Commit the .gitignore so everyone on the team shares the same rules.