From 4e6da5ac182a8332412154a71475ce9d61a4f297 Mon Sep 17 00:00:00 2001 From: Lisandro Dalcin Date: Thu, 17 Feb 2011 12:20:58 -0300 Subject: [PATCH] Create .gitignore and update .hgignore (thanks to W. Trevor King) --- .gitignore | 21 +++++++++++++++++++++ .hgignore | 13 ++++++++++--- 2 files changed, 31 insertions(+), 3 deletions(-) create mode 100644 .gitignore 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 -- 2.26.2