Fixed .gitignore file and ensured existance of package-folder
authorRouL <roul@codingcorner.info>
Fri, 15 Jul 2011 19:33:49 +0000 (21:33 +0200)
committerRouL <roul@codingcorner.info>
Fri, 15 Jul 2011 19:33:49 +0000 (21:33 +0200)
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.

.gitignore
wcfsetup/install/packages/.gitignore [new file with mode: 0644]

index cece83413958e1aacc5ed21221c32fedbd1052cb..89238c7629ac7e069e077dc79a4a12675be4df97 100644 (file)
@@ -1,12 +1,15 @@
 # Linux
-*~ # backup files
+# backup files
+*~
 
 # Windows
-Thumbs.db # thumbnails
+# thumbnails
+Thumbs.db
 
 # OS-X
 .DS_Store
-._* #thumbnails
+# thumbnails
+._*
 
 # Visual Studio PHP
 *.sln
@@ -25,8 +28,10 @@ nbproject/
 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
diff --git a/wcfsetup/install/packages/.gitignore b/wcfsetup/install/packages/.gitignore
new file mode 100644 (file)
index 0000000..edb2319
--- /dev/null
@@ -0,0 +1,3 @@
+# 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