Made .gitignore ignore everything in the root folder except data, lua, materials, models, settings (and files in folders other than these)

This commit is contained in:
TomyLobo 2012-05-27 01:33:23 +02:00
parent af30cd6882
commit 84520c21d8

15
.gitignore vendored
View File

@ -1 +1,16 @@
# First of all, make sure those pesky SVN folders don't end up on git
.svn
# Next, ignore all untracked files...
/*
# ...except the following folders and files in them
!/data
!/lua
!/materials
!/models
!/settings
!/sound
# If you need more folders at the root level, don't hesitate to add them
# If you need a new file at the root level, just use "git add -f <filename>"