Update .gitignore to ignore symlinks to non-static Minetest directories and sort into an editor section
[ci skip]pull/3192/merge
parent
524a7656e3
commit
89e8f3a918
|
@ -1,29 +1,46 @@
|
||||||
## Generic ignorable patterns and files
|
## Editors and Development environments
|
||||||
*~
|
*~
|
||||||
.*.swp
|
*.swp
|
||||||
.*-swp
|
*.bak*
|
||||||
*bak*
|
|
||||||
tags
|
|
||||||
*.vim
|
|
||||||
*.orig
|
*.orig
|
||||||
*.rej
|
# Vim
|
||||||
|
*.vim
|
||||||
|
# Kate
|
||||||
|
.*.kate-swp
|
||||||
|
.swp.*
|
||||||
|
# KDevelop4
|
||||||
|
.kdev4/
|
||||||
|
*.kdev4
|
||||||
|
# Eclipse (CDT and LDT)
|
||||||
|
.project
|
||||||
|
.cproject
|
||||||
|
.settings/
|
||||||
|
.buildpath
|
||||||
|
.metadata
|
||||||
|
# GNU Global
|
||||||
|
tags
|
||||||
|
!tags/
|
||||||
|
gtags.files
|
||||||
|
|
||||||
## Files related to minetest development cycle
|
## Files related to minetest development cycle
|
||||||
/*.patch
|
/*.patch
|
||||||
|
# GNU Patch reject file
|
||||||
|
*.rej
|
||||||
|
|
||||||
## Non-static Minetest directories
|
## Non-static Minetest directories or symlinks to these
|
||||||
/bin/
|
/bin/
|
||||||
/games/*
|
/games/*
|
||||||
!/games/minimal/
|
!/games/minimal/
|
||||||
/cache/
|
/cache
|
||||||
/textures/*
|
/textures/*
|
||||||
!/textures/base/
|
!/textures/base/
|
||||||
/sounds/
|
/screenshots
|
||||||
|
/sounds
|
||||||
/mods/*
|
/mods/*
|
||||||
!/mods/minetest/
|
!/mods/minetest/
|
||||||
/mods/minetest/*
|
/mods/minetest/*
|
||||||
!/mods/minetest/mods_here.txt
|
!/mods/minetest/mods_here.txt
|
||||||
/worlds/
|
/worlds
|
||||||
/world/
|
/world/
|
||||||
|
|
||||||
## Configuration/log files
|
## Configuration/log files
|
||||||
|
@ -50,9 +67,7 @@ src/cmake_config_githash.h
|
||||||
src/lua/build/
|
src/lua/build/
|
||||||
locale/
|
locale/
|
||||||
.directory
|
.directory
|
||||||
.kdev4/
|
|
||||||
*.cbp
|
*.cbp
|
||||||
*.kdev4
|
|
||||||
*.layout
|
*.layout
|
||||||
*.o
|
*.o
|
||||||
*.a
|
*.a
|
||||||
|
@ -70,4 +85,3 @@ build/android/path.cfg
|
||||||
build/android/and_env
|
build/android/and_env
|
||||||
build/android/AndroidManifest.xml
|
build/android/AndroidManifest.xml
|
||||||
timestamp
|
timestamp
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue