Skip to content

Commit 89e8f3a

Browse files
t4imest31
authored andcommittedSep 26, 2015
Update .gitignore to ignore symlinks to non-static Minetest directories and sort into an editor section
[ci skip]
1 parent 524a765 commit 89e8f3a

File tree

1 file changed

+28
-14
lines changed

1 file changed

+28
-14
lines changed
 

‎.gitignore

+28-14
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,46 @@
1-
## Generic ignorable patterns and files
1+
## Editors and Development environments
22
*~
3-
.*.swp
4-
.*-swp
5-
*bak*
6-
tags
7-
*.vim
3+
*.swp
4+
*.bak*
85
*.orig
9-
*.rej
6+
# Vim
7+
*.vim
8+
# Kate
9+
.*.kate-swp
10+
.swp.*
11+
# KDevelop4
12+
.kdev4/
13+
*.kdev4
14+
# Eclipse (CDT and LDT)
15+
.project
16+
.cproject
17+
.settings/
18+
.buildpath
19+
.metadata
20+
# GNU Global
21+
tags
22+
!tags/
23+
gtags.files
1024

1125
## Files related to minetest development cycle
1226
/*.patch
27+
# GNU Patch reject file
28+
*.rej
1329

14-
## Non-static Minetest directories
30+
## Non-static Minetest directories or symlinks to these
1531
/bin/
1632
/games/*
1733
!/games/minimal/
18-
/cache/
34+
/cache
1935
/textures/*
2036
!/textures/base/
21-
/sounds/
37+
/screenshots
38+
/sounds
2239
/mods/*
2340
!/mods/minetest/
2441
/mods/minetest/*
2542
!/mods/minetest/mods_here.txt
26-
/worlds/
43+
/worlds
2744
/world/
2845

2946
## Configuration/log files
@@ -50,9 +67,7 @@ src/cmake_config_githash.h
5067
src/lua/build/
5168
locale/
5269
.directory
53-
.kdev4/
5470
*.cbp
55-
*.kdev4
5671
*.layout
5772
*.o
5873
*.a
@@ -70,4 +85,3 @@ build/android/path.cfg
7085
build/android/and_env
7186
build/android/AndroidManifest.xml
7287
timestamp
73-

0 commit comments

Comments
 (0)
Please sign in to comment.