Skip to content

Commit d60485f

Browse files
coolyaarcresu
authored andcommitted
add Meta Programming System gitignore files
The Meta Programming System is a language workbench created by JetBrains. http://jetbrains.com/mps/ By default this file will ignore the generated java source and the compiled java classes that are produced by the language compiler. It will only add the Models which contain all information necessary to reproduce the the java source code and the the resulting class files. In addition to the generated source code it will ignore the test result files and test property files, because those are also generated from the models. The ignore file also prevents commiting the workspace.xml which contains the currently editor state, like open files and cursor position.
1 parent 76c09c6 commit d60485f

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

MetaProgrammingSystem.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# General
2+
3+
workspace.xml
4+
junitvmwatcher*.properties
5+
build.properties
6+
7+
# generated java classes and java source files
8+
# custom artifacts that can't be generated from the models you
9+
# should add them manually
10+
# see http://confluence.jetbrains.com/display/MPSD25/HowTo+--+MPS+and+Git
11+
# for further reference
12+
classes_gen
13+
source_gen
14+
source_gen.caches
15+
16+
# generated test code and test results
17+
test_gen
18+
test_gen.caches
19+
TEST-*.xml
20+
junit*.properties

0 commit comments

Comments
 (0)