Skip to content

Instantly share code, notes, and snippets.

@sspboyd
Last active November 10, 2020 19:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save sspboyd/4254051 to your computer and use it in GitHub Desktop.
Save sspboyd/4254051 to your computer and use it in GitHub Desktop.
My .gitignore for Processing.org projects
#################################
# Java generated files #
#################################
*.class
*.java
# Package Files #
*.jar
*.war
*.ear
#################################
# OS generated files #
#################################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
#################################
# Processing files #
#################################
sketch.properties
applet
application.macosx
build-tmp/
web-export/
#################################
# Some specific to my workflow #
#################################
out/
output/
savedImages/
srcFiles/
*.jpg
*.JPG
*.tiff
*.tif
*.TIFF
*.png
*.PNG
*.mov
*.MOV
@sspboyd
Copy link
Author

sspboyd commented Dec 16, 2012

Adding image files to the ignore list

@sspboyd
Copy link
Author

sspboyd commented May 22, 2013

Separated out Processing related files from files specific to my workflow.

@sspboyd
Copy link
Author

sspboyd commented Sep 25, 2014

Looked at gitignore.io and saw they had a couple lines I was missing for applet and mac os application export.
I am only including the macos application files (to be ignored) add in your OS's version of these directories if you're using windows or linux or w/e.

@sspboyd
Copy link
Author

sspboyd commented Sep 21, 2018

Just added "*.tif" since I use that extension sometimes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment