mirror of https://github.com/apache/cassandra
add .gitignore
patch by Michael Shuler; reviewed by jbellis for CASSANDRA-4899
This commit is contained in:
parent
a58a95ddbb
commit
f219e83b6a
|
|
@ -0,0 +1,55 @@
|
|||
.gitignore
|
||||
|
||||
# C*
|
||||
build/
|
||||
src/gen-java/
|
||||
src/resources/org/apache/cassandra/config/
|
||||
|
||||
# C* debs
|
||||
build-stamp
|
||||
build.properties
|
||||
debian/cassandra*debhelper*
|
||||
debian/cassandra.substvars
|
||||
debian/cassandra/
|
||||
debian/files
|
||||
|
||||
# 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
|
||||
Loading…
Reference in New Issue