aboutsummaryrefslogtreecommitdiff
path: root/git/template
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-29 14:38:35 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-29 14:38:35 +1200
commit2df4949713ee433a158ad310b51613ce7cd66099 (patch)
tree294962bc5e0d09ab01ee31a0994e216724c14a02 /git/template
parentRemove mapping loop from normal CTRL-L in vimrc (diff)
downloaddotfiles-2df4949713ee433a158ad310b51613ce7cd66099.tar.gz
dotfiles-2df4949713ee433a158ad310b51613ce7cd66099.zip
Add first attempt at Git template dir
Diffstat (limited to 'git/template')
-rw-r--r--git/template/description1
-rw-r--r--git/template/hooks/post-update.sh4
2 files changed, 5 insertions, 0 deletions
diff --git a/git/template/description b/git/template/description
new file mode 100644
index 00000000..9e2d17e8
--- /dev/null
+++ b/git/template/description
@@ -0,0 +1 @@
+I have no description, and I must scream.
diff --git a/git/template/hooks/post-update.sh b/git/template/hooks/post-update.sh
new file mode 100644
index 00000000..7199a513
--- /dev/null
+++ b/git/template/hooks/post-update.sh
@@ -0,0 +1,4 @@
+bare=$(git config core.bare)
+case $bare in
+ true) git update-server-info ;;
+esac