Cleaned and extended gitignore (#242)
This commit is contained in:
parent
9e4f365363
commit
aec7211fc8
7 changed files with 182 additions and 336 deletions
210
.gitignore
vendored
210
.gitignore
vendored
|
@ -1,19 +1,195 @@
|
|||
*.o
|
||||
# enriched with templates from https://www.gitignore.io/
|
||||
|
||||
### Amiberry files ###
|
||||
conf/*.uae
|
||||
conf/*.conf
|
||||
kickstarts/*.rom
|
||||
kickstarts/*.key
|
||||
/amiberry*
|
||||
|
||||
### VisualGDB ###
|
||||
VisualGDB/VisualGDB/Debug
|
||||
VisualGDB/VisualGDB/Release
|
||||
VisualGDB/Amiberry/VisualGDB
|
||||
VisualGDB/VisualGDB/Debug
|
||||
VisualGDBCache
|
||||
CodeDB
|
||||
*.opensdf
|
||||
*.sdf
|
||||
*.suo
|
||||
*.old
|
||||
|
||||
### VSLinux ###
|
||||
VSLinux/obj
|
||||
VSLinux/bin
|
||||
|
||||
### C ###
|
||||
# Prerequisites
|
||||
*.d
|
||||
|
||||
# Object files
|
||||
*.o
|
||||
*.ko
|
||||
*.obj
|
||||
*.elf
|
||||
|
||||
# Linker output
|
||||
*.ilk
|
||||
*.map
|
||||
*.exp
|
||||
|
||||
# Precompiled Headers
|
||||
*.gch
|
||||
*.pch
|
||||
|
||||
# Libraries
|
||||
*.lib
|
||||
*.a
|
||||
*.la
|
||||
*.lo
|
||||
|
||||
# Shared objects (inc. Windows DLLs)
|
||||
*.dll
|
||||
*.so
|
||||
*.so.*
|
||||
*.dylib
|
||||
|
||||
# Executables
|
||||
*.exe
|
||||
*.out
|
||||
*.app
|
||||
*.i*86
|
||||
*.x86_64
|
||||
*.hex
|
||||
|
||||
# Debug files
|
||||
*.dSYM/
|
||||
*.su
|
||||
*.idb
|
||||
*.pdb
|
||||
|
||||
### C++ ###
|
||||
# Compiled Object files
|
||||
*.slo
|
||||
|
||||
# Compiled Static libraries
|
||||
*.lai
|
||||
|
||||
### AndroidStudio ###
|
||||
# Covers files to be ignored for android development using Android Studio.
|
||||
|
||||
# Built application files
|
||||
*.apk
|
||||
*.ap_
|
||||
|
||||
# Files for the ART/Dalvik VM
|
||||
*.dex
|
||||
|
||||
# Java class files
|
||||
*.class
|
||||
|
||||
# Generated files
|
||||
bin/
|
||||
gen/
|
||||
out/
|
||||
|
||||
# Gradle files
|
||||
.gradle
|
||||
.gradle/
|
||||
build/
|
||||
|
||||
# Signing files
|
||||
.signing/
|
||||
|
||||
# Local configuration file (sdk path, etc)
|
||||
local.properties
|
||||
|
||||
# Proguard folder generated by Eclipse
|
||||
proguard/
|
||||
|
||||
# Log Files
|
||||
*.log
|
||||
|
||||
# Android Studio
|
||||
/*/build/
|
||||
/*/local.properties
|
||||
/*/out
|
||||
/*/*/build
|
||||
/*/*/production
|
||||
captures/
|
||||
.navigation/
|
||||
*.ipr
|
||||
*~
|
||||
*.swp
|
||||
|
||||
# Android Patch
|
||||
gen-external-apklibs
|
||||
|
||||
# External native build folder generated in Android Studio 2.2 and later
|
||||
.externalNativeBuild
|
||||
|
||||
# NDK
|
||||
obj/
|
||||
|
||||
# IntelliJ IDEA
|
||||
*.iml
|
||||
*.iws
|
||||
/out/
|
||||
|
||||
# User-specific configurations
|
||||
.idea/libraries/
|
||||
.idea/workspace.xml
|
||||
.idea/tasks.xml
|
||||
.idea/.name
|
||||
.idea/compiler.xml
|
||||
.idea/copyright/profiles_settings.xml
|
||||
.idea/encodings.xml
|
||||
.idea/misc.xml
|
||||
.idea/modules.xml
|
||||
.idea/scopes/scope_settings.xml
|
||||
.idea/dictionaries
|
||||
.idea/vcs.xml
|
||||
.idea/jsLibraryMappings.xml
|
||||
.idea/datasources.xml
|
||||
.idea/dataSources.ids
|
||||
.idea/sqlDataSources.xml
|
||||
.idea/dynamic.xml
|
||||
.idea/uiDesigner.xml
|
||||
|
||||
# OS-specific files
|
||||
.DS_Store
|
||||
.DS_Store?
|
||||
._*
|
||||
.Spotlight-V100
|
||||
.Trashes
|
||||
ehthumbs.db
|
||||
Thumbs.db
|
||||
|
||||
# Legacy Eclipse project files
|
||||
.classpath
|
||||
.project
|
||||
.cproject
|
||||
.settings/
|
||||
|
||||
# Package Files #
|
||||
*.war
|
||||
*.ear
|
||||
|
||||
### AndroidStudio Patch ###
|
||||
|
||||
!/gradle/wrapper/gradle-wrapper.jar
|
||||
|
||||
### Diverse ###
|
||||
|
||||
*.db
|
||||
*.dep
|
||||
*.ast
|
||||
*.rdb
|
||||
*.npd
|
||||
*.rsp
|
||||
*.suo
|
||||
*.alldeps
|
||||
*.log
|
||||
*.lck
|
||||
*.npa00
|
||||
*.psf
|
||||
*.000
|
||||
*.001
|
||||
|
@ -21,34 +197,12 @@ kickstarts/*.key
|
|||
*.npa01
|
||||
*.idx
|
||||
*.dat
|
||||
VisualGDB/VisualGDB/Debug/Amiberry
|
||||
VisualGDB/VisualGDB/Release/Amiberry
|
||||
*.sqlite
|
||||
*.ipch
|
||||
*.db-shm
|
||||
*.db-wal
|
||||
*.TMP
|
||||
*.d
|
||||
VisualGDB/VisualGDB/Release/Amiberry-sdl2
|
||||
*.npa00-cfdc2249
|
||||
*.a
|
||||
*.npa00-f5145647
|
||||
VisualGDB/VisualGDB/Debug/Amiberry-sdl2
|
||||
*.npa00-25509379
|
||||
*.npa00-01e2471b
|
||||
*.npa00-d8f9b35e
|
||||
VisualGDB/VisualGDB/Debug/build68k
|
||||
VisualGDB/VisualGDB/Debug/genblitter
|
||||
VisualGDB/VisualGDB/Release/build68k
|
||||
VisualGDB/VisualGDB/Release/genblitter
|
||||
VisualGDB/VisualGDB/Release/genlinetoscr
|
||||
VisualGDB/VisualGDB/Release/gencpu
|
||||
VisualGDB/VisualGDB/Release/gencomp
|
||||
*.npa00*
|
||||
*.tlog
|
||||
VSLinux/obj/ARM/Debug/amiberry-sdl2-dev
|
||||
VisualGDB/VisualGDB/Debug/Amiberry-sdl2-dev
|
||||
VSLinux/obj/ARM/Debug/
|
||||
VisualGDB/Amiberry/VisualGDB/Debug/Amiberry-sdl1
|
||||
VisualGDB/Amiberry/VisualGDB/Debug/Amiberry-sdl2
|
||||
VisualGDB/Amiberry/VisualGDB/
|
||||
/amiberry*
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue