From f71626c7ecade5cf26baa9cb318cdd1c3d0c84c1 Mon Sep 17 00:00:00 2001 From: p4bl0 Date: Tue, 10 Aug 2010 22:25:11 +0200 Subject: now preventing commit when zero article (for real ^^) and push when fugitive.blog-url not set --- pre-commit.sh | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 pre-commit.sh (limited to 'pre-commit.sh') diff --git a/pre-commit.sh b/pre-commit.sh new file mode 100644 index 0000000..225c73e --- /dev/null +++ b/pre-commit.sh @@ -0,0 +1,20 @@ +#!/bin/sh + +articles_dir=`git config --get fugitive.articles-dir` + +article_exists=`mktemp --suffix "-fugitive"` +for f in "$articles_dir"/*; do + ts=`git log --format="%at" -- "$f" | tail -1` + if [ "$ts" != "" ]; then + echo "1" + break + fi +done > "$article_exists" +article_exists=`cat $article_exists` +non_tracked=`git status --porcelain | grep -E '^(A|R)' | grep "$articles_dir"` + +if [ "$article_exists" = "" -a "$non_tracked" = "" ]; then + echo -n "[fugitive] ERROR: need at least one article (you can use " >&2 + echo '`git commit --no-verify` to bypass), aborting.' >&2 + exit 1 +fi -- cgit v1.2.3