How to setup GIT for a GWT project -
which files , folders of gwt project have tracked, can ignore?
i think ./src, ./test have tracked. found out ./war important, i've red, contains generated files.
i found out ./test-classes must tracked, don't understand why.
usually folders , files git version control gwt projects including:
.settings war .classpath .project
usually files , folders ignored git (you can find here):
*.class # package files # *.jar *.war # gwt caches , compiled units # war/gwt_bree/ gwt-unitcache/ # boilerplate generated classes # .apt_generated/ # more caches , things deploy # war/web-inf/deploy/ war/web-inf/classes/ #compilation logs .gwt/ #caching compiled files gwt-unitcache/ #gwt junit compilation files www-test/ #old gwt (1.5) created dir .gwt-tmp/
in word, files changes have impact project should version controlled. , output files/folders or files have no impact project can ignored git.
Comments
Post a Comment