Intellij IDEA 8.1.3でGitサポートを楽しめます。私はLinuxでいくつかのGrails開発を行ってきました。IntelliJ IDEA 8.1.xで.gitignoreの項目を無視させるには
IDEAはなど/tests/reports
などの他のファイルを無視しているようですが、stacktrace.logは無視されません。
*.iws
.DS_Store
/out/**
# web application files that are overwritten by "grails upgrade"
# cf. GRAILS_HOME/scripts/Upgrade.groovy, target(upgrade)
/web-app/WEB-INF
# IDE support files that are overwritten by "grails upgrade"
# cf. GRAILS_HOME/scripts/CreateApp.groovy, target(createIDESupportFiles)
# to be specific, you could replace "/*" below with your project name,
# e.g. "foobar.launch" (no slash)
.classpath
.project
.settings
/*.launch
/*.tmproj
# logs
stacktrace.log
/test/reports
# project release file
*.war
/classes
私は何かを明らかに足りない:他の言葉の変更では、私の.gitignoreファイルの
内容である「変更」ウィンドウに表示さstacktrace.logするには?
IDEA 8.1.3で.gitignoreのすべての項目を無視するにはどうすればよいですか?
Gitプラグインを使用していますか? – duffymo
はい私は組み込みのGitプラグインを使用しています –