Updated Branches: refs/heads/cassandra-1.2 a58a95ddb -> f219e83b6 refs/heads/cassandra-2.0 03f4c92d1 -> 1365749e4 refs/heads/trunk 7c182811b -> 30afda368
add .gitignore patch by Michael Shuler; reviewed by jbellis for CASSANDRA-4899 Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/f219e83b Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/f219e83b Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/f219e83b Branch: refs/heads/cassandra-1.2 Commit: f219e83b6a6e59ce189101d6fe8d4b1c277bfacf Parents: a58a95d Author: Jonathan Ellis <[email protected]> Authored: Thu Dec 26 10:51:29 2013 -0600 Committer: Jonathan Ellis <[email protected]> Committed: Thu Dec 26 10:56:00 2013 -0600 ---------------------------------------------------------------------- .gitignore | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 55 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cassandra/blob/f219e83b/.gitignore ---------------------------------------------------------------------- diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..8013e30 --- /dev/null +++ b/.gitignore @@ -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
