Added .gitignore, obey it please. See _* rule!
authorHarvie <tomas@mudrunka.cz>
Sat, 23 Oct 2010 23:42:13 +0000 (01:42 +0200)
committerHarvie <tomas@mudrunka.cz>
Sun, 24 Oct 2010 01:43:06 +0000 (03:43 +0200)
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 [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..f841e73
--- /dev/null
@@ -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
+
This page took 0.134527 seconds and 4 git commands to generate.