From: Lisandro Dalcin Date: Thu, 17 Feb 2011 15:20:58 +0000 (-0300) Subject: Create .gitignore and update .hgignore (thanks to W. Trevor King) X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=4e6da5ac182a8332412154a71475ce9d61a4f297;p=cython.git Create .gitignore and update .hgignore (thanks to W. Trevor King) --- diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..4d2d33fb --- /dev/null +++ b/.gitignore @@ -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 diff --git a/.hgignore b/.hgignore index 6fa71316..e63f81a6 100644 --- 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