From df89f101573c60426cf3f16a5206200806a7056c Mon Sep 17 00:00:00 2001 From: Benjamin Auder Date: Mon, 30 Jan 2017 01:18:59 +0100 Subject: [PATCH] add initialize.sh script to be run after cloning --- initialize.sh | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100755 initialize.sh diff --git a/initialize.sh b/initialize.sh new file mode 100755 index 0000000..a596694 --- /dev/null +++ b/initialize.sh @@ -0,0 +1,15 @@ +#!/bin/sh + +#initialize submodules, set-up .git/config and .gitattributes, and pre-push hook +git submodule init && git submodule update --merge +#filter for git-fat +echo -e '*.pdf filter=fat\n*.tar.xz filter=fat' > .gitattributes +#pre-push hook: git fat push, submodules update +echo -e '#!/bin/sh\ngit fat push\ngit submodule update --merge' > .git/hooks/pre-push +#.gitfat file with remote on gitfat@auder.net +echo -e '[rsync]\nremote = gitfat@auder.net:~/files' > .gitfat +#manual git-fat init: with relative path to binary +#1] remove filter if exists http://stackoverflow.com/questions/12179437/replace-3-lines-with-another-line-sed-syntax +sed -i '1N;$!N;s/\[filter "fat"\]\n.*\n.*//;P;D' .git/config +#2] place new filter +echo -e '[filter "fat"]\n\tclean = ./git-fat/git-fat filter-clean\n\tsmudge = ./git-fat/git-fat filter-smudge' >> .git/config -- 2.44.0