Ich genieße Git-Unterstützung in Intellij IDEA 8.1.3. Ich habe einige Grails-Entwicklung unter Linux damit gemacht.Wie mache ich IntelliJ IDEA 8.1.x ignorieren ein Element in .gitignore
IDEA scheint andere Dateien von .gitignore
wie /tests/reports
usw. zu ignorieren, ignoriert aber stacktrace.log nicht. Mit anderen Worten: Änderungen an stacktrace.log in der ‚Änderungen‘ Fenster
Die Inhalte meiner .gitignore Datei angezeigt ist:
*.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
Bin ich etwas fehlt offensichtlich?
Wie mache ich IDEA 8.1.3 alle Elemente von .gitignore ignorieren?
Verwenden Sie das Git-Plug-In? – duffymo
Ja Ich verwende das Git-Plugin, das eingebaut wurde –