Comments after file-definitions on the same line in .gitignore are NOT allowed.
Added .gitignore to wcfsetup/install/packages to ensure it will be in
the repository.
# Linux
-*~ # backup files
+# backup files
+*~
# Windows
-Thumbs.db # thumbnails
+# thumbnails
+Thumbs.db
# OS-X
.DS_Store
-._* #thumbnails
+# thumbnails
+._*
# Visual Studio PHP
*.sln
nbactions.xml
# SVN
-.svn/ # svn folders
+# svn folders
+.svn/
# Community Framework
-*.tar
-*.tar.gz # Ignore packages build directly in the workspace. They can however, if wanted, added manually via git add
+# Ignore packages build directly in the workspace. They can however, if wanted, added manually via git add
+*.tar
+*.tar.gz
--- /dev/null
+# This file ensures this directory is within version control since git does
+# not track directories but files. In fact, this directory is meant to be empty
+*
\ No newline at end of file