From a3082b0aa13b26952e9db674af8f62555615fccf Mon Sep 17 00:00:00 2001 From: Nicolas Vigier Date: Tue, 21 Dec 2010 19:20:24 +0000 Subject: add pre-commit script to prevent commit of some binary files --- modules/subversion/templates/no_binary | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 modules/subversion/templates/no_binary (limited to 'modules/subversion/templates') diff --git a/modules/subversion/templates/no_binary b/modules/subversion/templates/no_binary new file mode 100644 index 00000000..5787eae7 --- /dev/null +++ b/modules/subversion/templates/no_binary @@ -0,0 +1,14 @@ +#!/bin/sh + +REP="$1" +TXN="$2" + +# Filter some binary files based on common filename extentions. +# It does not fully prevent commit of binary files, this script is only +# here to avoid simple mistakes +if svnlook changed -t "$TXN" "$REP" | grep -qi '\.\(gz\|bz2\|xz\|lzma\|Z\|7z\|tar\|tgz\|zip\|jpg\|gif\|png\|ogg\|mp3\|wav\|rar\|pdf\)$' +then + echo 'no binary files allowed on this repository' + exit 1 +fi + -- cgit v1.2.1