From: RouL Date: Fri, 15 Jul 2011 19:33:49 +0000 (+0200) Subject: Fixed .gitignore file and ensured existance of package-folder X-Git-Tag: 2.0.0_Beta_1~2020^2 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=a272766d1630fd89cbcc766c2d714f64c2fe2eb5;p=GitHub%2FWoltLab%2FWCF.git Fixed .gitignore file and ensured existance of package-folder 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. --- diff --git a/.gitignore b/.gitignore index cece834139..89238c7629 100644 --- a/.gitignore +++ b/.gitignore @@ -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 index 0000000000..edb23193dc --- /dev/null +++ b/wcfsetup/install/packages/.gitignore @@ -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