Unity creates and deletes meta files for folders inside the Asset folder.
That can create an annoying situation when using version control (that you can skip an
Add this to .gitignore
#Ignore all .meta file *.meta #But not source file with postfix. which is everything but a folder !*.*.meta
This will ignore file without postfix. But that shouldn't hurt.