8227170: (.hg)Ignore the JTwork and JTreport directories generated at the root of the repo
authorjpai
Mon, 29 Jul 2019 16:31:09 +0530
changeset 57608 0d17da18142b
parent 57607 8d3886985964
child 57609 c717fd746de4
8227170: (.hg)Ignore the JTwork and JTreport directories generated at the root of the repo Summary: Fix the .hgignore file to properly ignore the following: .DS_Store file, .metadata, .recommenders, JTwork and JTreport directories at the root of the repo (in addition to being ignored as sub-directories). src/utils/hsdis/build/ directory Reviewed-by: erikj
.hgignore
--- a/.hgignore	Wed Jul 31 14:28:51 2019 -0400
+++ b/.hgignore	Mon Jul 29 16:31:09 2019 +0530
@@ -5,12 +5,13 @@
 ^webrev
 ^.src-rev$
 ^.jib/
-\.DS_Store
-\.metadata/
-\.recommenders/
+(^|/)\.DS_Store
+(^|/)\.metadata/
+(^|/)\.recommenders/
 test/nashorn/script/external
 test/nashorn/lib
 NashornProfile.txt
-.*/JTreport/.*
-.*/JTwork/.*
-.*/.git/.*
+(^|/)JTreport/
+(^|/)JTwork/
+(^|/)\.git/
+^src/utils/hsdis/build/
\ No newline at end of file