summaryrefslogtreecommitdiff
path: root/etc-init.d/40git-ignore
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2007-11-05 15:51:52 -0500
committerJoey Hess <joey@kodama.kitenet.net>2007-11-05 15:51:52 -0500
commit3e6cf464cff47d22f4ac4b4313fda68f32ae1ea8 (patch)
treed2b155927e17939b42f85fc93a0498d1702a19e0 /etc-init.d/40git-ignore
parent32ff749a8d5c8be76a3221abc41398477207006e (diff)
starting implementation
Diffstat (limited to 'etc-init.d/40git-ignore')
-rwxr-xr-xetc-init.d/40git-ignore15
1 files changed, 15 insertions, 0 deletions
diff --git a/etc-init.d/40git-ignore b/etc-init.d/40git-ignore
new file mode 100755
index 0000000..846c32d
--- /dev/null
+++ b/etc-init.d/40git-ignore
@@ -0,0 +1,15 @@
+#!/bin/sh
+set -e
+if [ ! -e .gitignore ]; then
+ cat <<EOF >.gitignore
+*~
+
+# new and old versions of conffiles, stored by dpkg
+*.dpkg-new
+*.dpkg-old
+
+# mount(8) records system state here, no need to keep these in git
+blkid.tab(|.old)
+mtab
+EOF
+fi