Skip to content

Commit 880bedd

Browse files
Add config folders and test results to gitignore
When tests run locally from ant scripts some config folders and output files created under project folder. To avoid accidental commits add them to .gitignore and exclude from indexing
1 parent b095af1 commit 880bedd

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

.gitignore

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
1-
/system
2-
/config
1+
# Local IDE configurations when running from sources/tests/ant
2+
/system/
3+
/config/
4+
/tmpsettings/
5+
/build/system/
6+
/build/config/
7+
8+
# Test results from local test run (ant)
9+
/TEST-*
310

411
# idea integration plugin artifact
512
/plugins/mps-idea-integration/IDEAPlugin/mps-idea-integration-plugin.jar

mps-project-excludes.iml

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
<exclude-output />
55
<content url="file://$MODULE_DIR$/build">
66
<excludeFolder url="file://$MODULE_DIR$/build/artifacts" />
7+
<excludeFolder url="file://$MODULE_DIR$/build/config" />
8+
<excludeFolder url="file://$MODULE_DIR$/build/system" />
79
<excludeFolder url="file://$MODULE_DIR$/build/tmp" />
810
</content>
911
<orderEntry type="inheritedJdk" />

mps.iml

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
<excludeFolder url="file://$MODULE_DIR$/mps-platform/community" />
88
<excludeFolder url="file://$MODULE_DIR$/mps-platform/out" />
99
<excludeFolder url="file://$MODULE_DIR$/log" />
10+
<excludeFolder url="file://$MODULE_DIR$/config" />
11+
<excludeFolder url="file://$MODULE_DIR$/system" />
12+
<excludeFolder url="file://$MODULE_DIR$/tmpsettings" />
1013
</content>
1114
<orderEntry type="inheritedJdk" />
1215
<orderEntry type="sourceFolder" forTests="false" />

0 commit comments

Comments
 (0)