11107a4121
Motivation: IntelliJ IDEA may generate a local folder `.shelf/` for version control. For more information, see https://www.jetbrains.com/help/idea/shelving-and-unshelving-changes.html Modifications: - Add `.shelf/` folder to the `.gitignore` file; Result: IntelliJ IDEA's `.shelf/` folder is ignored by git.
49 lines
597 B
Plaintext
49 lines
597 B
Plaintext
# Eclipse project files
|
|
.project
|
|
.classpath
|
|
.settings
|
|
|
|
# IntelliJ IDEA project files and directories
|
|
*.iml
|
|
*.ipr
|
|
*.iws
|
|
.idea/
|
|
.shelf/
|
|
|
|
# Geany project file
|
|
.geany
|
|
|
|
# KDevelop project file and directory
|
|
.kdev4/
|
|
*.kdev4
|
|
|
|
# Build targets
|
|
/target
|
|
*/target
|
|
|
|
# Report directories
|
|
/reports
|
|
*/reports
|
|
|
|
# Mac-specific directory that no other operating system needs.
|
|
.DS_Store
|
|
|
|
# JVM crash logs
|
|
hs_err_pid*.log
|
|
|
|
dependency-reduced-pom.xml
|
|
|
|
*/.unison.*
|
|
|
|
# exclude mainframer files
|
|
mainframer
|
|
.mainframer
|
|
|
|
# exclude docker-sync stuff
|
|
.docker-sync
|
|
*/.docker-sync
|
|
|
|
# exclude vscode files
|
|
.vscode/
|
|
*.factorypath
|