From dd613cde520995fddc3f5299b530795aa62dc0b9 Mon Sep 17 00:00:00 2001 From: Kirill Smelkov Date: Sat, 3 May 2008 15:35:07 +0400 Subject: [PATCH] Initial .hgignore We ignore *.pyc, vim swap files, build results under BUILD/ and Lexicon.pickle This is handy, because otherwise, say after runtest.py run, 'hg status' shows lots of unrelated info, thus lowering signal-to-noise ratio. --- .hgignore | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .hgignore diff --git a/.hgignore b/.hgignore new file mode 100644 index 00000000..03cd7996 --- /dev/null +++ b/.hgignore @@ -0,0 +1,8 @@ +syntax: glob + +*.pyc +*.swp + +Cython/Compiler/Lexicon.pickle +BUILD/ + -- 2.26.2