From f2d3b1fc020febf7401a75f99a318f602067f2ea Mon Sep 17 00:00:00 2001 From: Harvie Date: Sun, 24 Oct 2010 01:42:13 +0200 Subject: [PATCH] Added .gitignore, obey it please. See _* rule! You can use _* rule to hide site-specific configuration files from git. eg: _config.php will not get into git and will not get overwritten by it. Anyway the software should work out-of-box even without such files if possible. --- .gitignore | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f841e73 --- /dev/null +++ b/.gitignore @@ -0,0 +1,32 @@ +_* +*~ +*.part + +pkg/ +src/ + +*.exe +*.EXE +*.dll +*.com +*.out +*.o +*.so +*.class + +*.tar +*.gz +*.xz +*.bz +*.bz2 +*.tgz +*.zip +*.rar + +*.mp3 +*.wav +*.mpeg +*.avi +*.ogg +*.ogv + -- 2.30.2