From: Christian Heller Date: Wed, 25 Jan 2017 23:53:30 +0000 (+0100) Subject: Add misc notes. X-Git-Url: https://plomlompom.com/repos/?p=config;a=commitdiff_plain;h=0d72cfd4681a9494cf5c7d33877e124bdcc114f7 Add misc notes. --- diff --git a/notes b/notes new file mode 100644 index 0000000..bdc1902 --- /dev/null +++ b/notes @@ -0,0 +1,23 @@ +some stuff I need to incorporate later on: + +the blog post-update git hook: + + + +#!/bin/sh +blog_dir=~/blog +export GIT_DIR=$(pwd) +export GIT_WORK_TREE="$blog_dir" +git checkout -f +cd "$GIT_WORK_TREE" +redo +git add metadata/author metadata/url metadata/title metadata/*.tmpl metadata/automatic_metadata captchas/linkable/* +count=$(ls -1 metadata/*.automatic_metadata 2>/dev/null | wc -l) +if [ "$count" != 0 ]; then + git add metadata/*.automatic_metadata +fi +status=$(git status -s) +n_updates=$(printf "$status" | grep -vE '^\?\?' | wc -l) +if [ "$n_updates" -gt 0 ]; then + git commit -a -m 'Update metadata' +fi