Create .gitignore and update .hgignore (thanks to W. Trevor King)
authorLisandro Dalcin <dalcinl@gmail.com>
Thu, 17 Feb 2011 15:20:58 +0000 (12:20 -0300)
committerLisandro Dalcin <dalcinl@gmail.com>
Thu, 17 Feb 2011 15:20:58 +0000 (12:20 -0300)
.gitignore [new file with mode: 0644]
.hgignore

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..4d2d33f
--- /dev/null
@@ -0,0 +1,21 @@
+*.pyc
+*.pyo
+__pycache__
+
+Cython/Compiler/*.c
+Cython/Plex/*.c
+Cython/Runtime/refnanny.c
+
+BUILD/
+build/
+dist/
+.gitrev
+.coverage
+*.orig
+*.rej
+*.dep
+*.swp
+*~
+
+tags
+TAGS
index 6fa71316b1686d1c910ad1403efb6136ac5dc176..e63f81a6ed52dda666a4332123629827121449fb 100644 (file)
--- a/.hgignore
+++ b/.hgignore
@@ -1,16 +1,23 @@
 syntax: glob
 
 *.pyc
-*.swp
+*.pyo
+__pycache__
+
+Cython/Compiler/*.c
+Cython/Plex/*.c
+Cython/Runtime/refnanny.c
 
-Cython/Compiler/Lexicon.pickle
 BUILD/
 build/
 dist/
+.gitrev
 .coverage
-*~
 *.orig
 *.rej
 *.dep
+*.swp
+*~
 
 tags
+TAGS