From f7a1ae4531047d710bcdc03fd3216b6910834e1f Mon Sep 17 00:00:00 2001 From: Vijay Bellur Date: Thu, 22 Dec 2011 11:19:18 +0530 Subject: Adding rfc.sh Signed-off-by: Vijay Bellur --- rfc.sh | 107 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 107 insertions(+) create mode 100755 rfc.sh diff --git a/rfc.sh b/rfc.sh new file mode 100755 index 0000000..9886c22 --- /dev/null +++ b/rfc.sh @@ -0,0 +1,107 @@ +#!/bin/sh -e + + +branch="master"; + + +set_hooks_commit_msg() +{ + f=".git/hooks/commit-msg"; + u="http://review.gluster.com/tools/hooks/commit-msg"; + + if [ -x "$f" ]; then + return; + fi + + curl -o $f $u || wget -O $f $u; + + chmod +x .git/hooks/commit-msg; +} + + +is_num() +{ + local num; + + num="$1"; + + [ -z "$(echo $num | sed -e 's/[0-9]//g')" ] +} + + +rebase_changes() +{ + git fetch; + + GIT_EDITOR=$0 git rebase -i origin/$branch; +} + + +editor_mode() +{ + if [ $(basename "$1") = "git-rebase-todo" ]; then + sed 's/^pick /reword /g' "$1" > $1.new && mv $1.new $1; + return; + fi + + if [ $(basename "$1") = "COMMIT_EDITMSG" ]; then + if grep -qi '^BUG: ' $1; then + return; + fi + while true; do + echo Commit: "\"$(head -n 1 $1)\"" +# echo -n "Enter Bug ID: " +# read bug +# if [ -z "$bug" ]; then +# return; +# fi +# if ! is_num "$bug"; then +# echo "Invalid Bug ID ($bug)!!!"; +# continue; +# fi + +# sed "/^Change-Id:/{p; s/^.*$/BUG: $bug/;}" $1 > $1.new && \ +# mv $1.new $1; +# return; + done + fi + + cat <