Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
t7505: style fixes
author
Phillip Wood
<phillip.wood@dunelm.org.uk>
Wed, 24 Jan 2018 12:34:20 +0000
(12:34 +0000)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 24 Jan 2018 19:00:16 +0000
(11:00 -0800)
Fix the indentation and style of the hook script in preparation for
further changes.
Signed-off-by: Phillip Wood <phillip.wood@dunelm.org.uk>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t7505-prepare-commit-msg-hook.sh
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
ed1e528
)
diff --git
a/t/t7505-prepare-commit-msg-hook.sh
b/t/t7505-prepare-commit-msg-hook.sh
index b13f72975ecce17887c4c8275c6935d78d4b09a0..cef709555eb9c3e3dec0016909a17ce7cf32650a 100755
(executable)
--- a/
t/t7505-prepare-commit-msg-hook.sh
+++ b/
t/t7505-prepare-commit-msg-hook.sh
@@
-31,15
+31,17
@@
mkdir -p "$HOOKDIR"
echo "#!$SHELL_PATH" > "$HOOK"
cat >> "$HOOK" <<'EOF'
echo "#!$SHELL_PATH" > "$HOOK"
cat >> "$HOOK" <<'EOF'
-if test "$2" = commit; then
- source=$(git rev-parse "$3")
+if test "$2" = commit
+then
+ source=$(git rev-parse "$3")
else
else
- source=${2-default}
+
source=${2-default}
fi
fi
-if test "$GIT_EDITOR" = :; then
- sed -e "1s/.*/$source (no editor)/" "$1" > msg.tmp
+if test "$GIT_EDITOR" = :
+then
+ sed -e "1s/.*/$source (no editor)/" "$1" >msg.tmp
else
else
-
sed -e "1s/.*/$source/" "$1" >
msg.tmp
+
sed -e "1s/.*/$source/" "$1" >
msg.tmp
fi
mv msg.tmp "$1"
exit 0
fi
mv msg.tmp "$1"
exit 0