Мне нравится поддержка Git в Intellij IDEA 8.1.3. Я занимался разработкой Grails под Linux.
Кажется, IDEA игнорирует другие файлы из .gitignore
, например /tests/reports
и т. Д., Но не игнорирует stacktrace.log. Другими словами, изменения в stacktrace.log отображаются в окне «изменений»
Содержимое моего файла .gitignore:
*.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
Я что-то упускаю из виду?
Как сделать так, чтобы IDEA 8.1.3 игнорировал все элементы из .gitignore?