.gitignore improvements for Windows/macOS
This commit is contained in:
parent
df17cf06d4
commit
b0279192cb
1 changed files with 23 additions and 6 deletions
29
.gitignore
vendored
29
.gitignore
vendored
|
@ -14,7 +14,6 @@ platform/android/java/local.properties
|
||||||
platform/android/java/project.properties
|
platform/android/java/project.properties
|
||||||
platform/android/java/libs/*
|
platform/android/java/libs/*
|
||||||
platform/android/java/assets
|
platform/android/java/assets
|
||||||
platform/android/java/.idea/*
|
|
||||||
platform/android/java/*.iml
|
platform/android/java/*.iml
|
||||||
|
|
||||||
# General c++ generated files
|
# General c++ generated files
|
||||||
|
@ -52,13 +51,19 @@ gmon.out
|
||||||
# Eclipse CDT files
|
# Eclipse CDT files
|
||||||
.cproject
|
.cproject
|
||||||
.settings/
|
.settings/
|
||||||
|
*.pydevproject
|
||||||
|
*.launch
|
||||||
|
|
||||||
# Geany/geany-plugins files
|
# Geany/geany-plugins files
|
||||||
*.geany
|
*.geany
|
||||||
.geanyprj
|
.geanyprj
|
||||||
|
|
||||||
|
# Jetbrains IDEs
|
||||||
|
.idea/
|
||||||
|
|
||||||
# Misc
|
# Misc
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
__MACOSX
|
||||||
logs/
|
logs/
|
||||||
|
|
||||||
# for projects that use SCons for building: http://http://www.scons.org/
|
# for projects that use SCons for building: http://http://www.scons.org/
|
||||||
|
@ -66,7 +71,6 @@ logs/
|
||||||
.sconsign.dblite
|
.sconsign.dblite
|
||||||
*.pyc
|
*.pyc
|
||||||
|
|
||||||
|
|
||||||
# https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
# https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
|
||||||
## Ignore Visual Studio temporary files, build results, and
|
## Ignore Visual Studio temporary files, build results, and
|
||||||
## files generated by popular Visual Studio add-ons.
|
## files generated by popular Visual Studio add-ons.
|
||||||
|
@ -123,6 +127,7 @@ TestResult.xml
|
||||||
*.tlh
|
*.tlh
|
||||||
*.tmp
|
*.tmp
|
||||||
*.tmp_proj
|
*.tmp_proj
|
||||||
|
*.bak
|
||||||
*.log
|
*.log
|
||||||
*.vspscc
|
*.vspscc
|
||||||
*.vssscc
|
*.vssscc
|
||||||
|
@ -130,6 +135,7 @@ TestResult.xml
|
||||||
*.pidb
|
*.pidb
|
||||||
*.svclog
|
*.svclog
|
||||||
*.scc
|
*.scc
|
||||||
|
*.nib
|
||||||
|
|
||||||
# Chutzpah Test files
|
# Chutzpah Test files
|
||||||
_Chutzpah*
|
_Chutzpah*
|
||||||
|
@ -245,8 +251,11 @@ __pycache__/
|
||||||
#Kdevelop project files
|
#Kdevelop project files
|
||||||
*.kdev4
|
*.kdev4
|
||||||
|
|
||||||
# xCode
|
# Xcode
|
||||||
xcuserdata
|
xcuserdata/
|
||||||
|
*.xcscmblueprint
|
||||||
|
*.xccheckout
|
||||||
|
*.xcodeproj/*
|
||||||
|
|
||||||
# RIA/Silverlight projects
|
# RIA/Silverlight projects
|
||||||
Generated_Code/
|
Generated_Code/
|
||||||
|
@ -275,11 +284,19 @@ FakesAssemblies/
|
||||||
# =========================
|
# =========================
|
||||||
|
|
||||||
# Windows image file caches
|
# Windows image file caches
|
||||||
Thumbs.db
|
[Tt]humbs.db
|
||||||
|
[Tt]humbs.db:encryptable
|
||||||
ehthumbs.db
|
ehthumbs.db
|
||||||
|
ehthumbs_vista.db
|
||||||
|
|
||||||
|
# Windows stackdumps
|
||||||
|
*.stackdump
|
||||||
|
|
||||||
|
# Windows shortcuts
|
||||||
|
*.lnk
|
||||||
|
|
||||||
# Folder config file
|
# Folder config file
|
||||||
Desktop.ini
|
[Dd]esktop.ini
|
||||||
|
|
||||||
# Recycle Bin used on file shares
|
# Recycle Bin used on file shares
|
||||||
$RECYCLE.BIN/
|
$RECYCLE.BIN/
|
||||||
|
|
Loading…
Reference in a new issue