From e5f47376c8aa54c5d4eb8709b95f9cf68c4fa32f Mon Sep 17 00:00:00 2001
From: Romain Francoise <rfrancoise@debian.org>
Date: Sun, 12 Sep 2010 10:56:36 +0200
Subject: Remove prompting from example Git pre-commit hook.

Hooks now run with stdin closed (since Git version 1.5.4) and prompting
will not work when using a high-level interface such as git-gui or Emacs
anyway.
---
 examples/pre-commit | 15 +--------------
 1 file changed, 1 insertion(+), 14 deletions(-)

diff --git a/examples/pre-commit b/examples/pre-commit
index e0e89dd..1b5d5c6 100644
--- a/examples/pre-commit
+++ b/examples/pre-commit
@@ -1,20 +1,7 @@
 #!/bin/bash
 #
 # An example hook script to store metadata information using
-# metastore on each commit. A verification message with a list
-# of changes will first be shown and only if it is accepted will
-# the commit proceed.
-
-echo "Going to commit the following metadata changes" >&2
-metastore -c -m >&2
-echo -n "Ok to commit? (y/n): " >&2
-read -n1 REPLY
-echo ""
-
-if [ "$REPLY" != "y" ]; then
-	echo "Aborted" >&2
-	exit 1
-fi
+# metastore on each commit.
 
 if ! metastore -s; then
 	echo "Failed to execute metastore -s" >&2
-- 
cgit v1.2.1