changeset 520:c3c8643bf10f

Update .hgignore This change to .hgignore ignores all .project, .classpath files and .settings directories except for those in folder client/eclipse. In client/eclipse we need them in order to be able to import Eclipse plug-in projects with correct settings. Reviewed-by: neugens Review-thread: http://icedtea.classpath.org/pipermail/thermostat/2012-August/002563.html
author Severin Gehwolf <sgehwolf@redhat.com>
date Fri, 03 Aug 2012 09:34:30 +0200
parents 8bf476b9575c
children 7fce07cbb012
files .hgignore
diffstat 1 files changed, 8 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/.hgignore	Thu Aug 02 21:08:46 2012 +0200
+++ b/.hgignore	Fri Aug 03 09:34:30 2012 +0200
@@ -1,7 +1,12 @@
-.settings
-.project
-.classpath
 /target/
 
+syntax: regexp
+# Ignore all {.classpath,.project,.settings/*} files except for folders in 
+# client/eclipse
+# 
+# Using negative lookahead expression
+^(?!client/eclipse).*\.(settings|project|classpath)
+
 syntax: glob
 target/*
+bin/*