From 5274dcdc56016e4a5fbd32c491601990aedabe4e Mon Sep 17 00:00:00 2001 From: Kurt L Vanderwater Date: Sun, 6 Mar 2011 22:21:41 -0600 Subject: [PATCH] Add .gitignore file to remove management of DB driven files --- .gitignore | 16 ++++++++++++++++ 1 files changed, 16 insertions(+), 0 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..da1d239 --- /dev/null +++ b/.gitignore @@ -0,0 +1,16 @@ +# Patterns read from a .gitignore file in the same directory as the path, or in any parent directory, with patterns in the higher level +# files (up to the toplevel of the work tree) being overridden by those in lower level files down to the directory containing the file. +# These patterns match relative to the location of the .gitignore file. +# A project normally includes such .gitignore files in its repository, containing patterns for files generated as part of the project build. +# + +# Ignore all settings*.php files as these contain the DB password +sites/*/settings*.php + +# Ignore all the files (and folders) in these folders as they are managed by the files table +sites/*/files +sites/*/private + +# Ignore all the files (and folders) in these folders as they are managed by the files table. This variation is for sites that have upgraded from 5.x or earlier. +files + -- 1.6.4.4