On 12/19/2013 05:46 PM, Jacob Rhoden wrote:
Your missing netbeans includes. I also include the following for
anything java related.

.*.swo

Thumbs.db

Added.

# Maven and other build system/IDE artifacts
bin
build
out/*
target/*

We can't exclude bin/, since it's under revision control and build/ is already excluded.

# Netbeans
nb-configuration.xml
nbactions.xml
nbproject

Added with a couple other typical netbeans dirs.

--- snip ---
# C*
build/
src/gen-java/
src/resources/org/apache/cassandra/config/

# gitignore doesn't help with modified files - you may wish to:
# git update-index --assume-unchanged test/data/serialization/2.0/db.RowMutation.bin
# to undo:
# git update-index --no-assume-unchanged test/data/serialization/2.0/db.RowMutation.bin

# IntelliJ
.idea/
*.iml
*.ipr
*.iws

# Eclipse
.classpath
.project
.metadata
.settings/
local.properties

# Cscope
cscope.*

# NetBeans
nbbuild/
nbdist/
nbproject/
nb-configuration.xml
nbactions.xml

# Maven, etc.
out/
target/

# General
*.pyc
*~
*.bak
*.sw[o,p]
*.tmp
.DS_Store
Thumbs.db
--- snip ---

--
Kind regards,
Michael

Reply via email to