hgeditor
71 lines
| 1.6 KiB
| text/plain
|
TextLexer
Thomas Arendsen Hein
|
r544 | #!/bin/sh | ||
mpm@selenic.com
|
r186 | # | ||
# This is an example of using HGEDITOR to automate the signing of | ||||
# commits and so on. | ||||
Matt Mackall
|
r684 | # change this to one to turn on GPG support | ||
SIGN=0 | ||||
Radoslaw "AstralStorm" Szkodzinski
|
r666 | # If you want to pass your favourite editor some other parameters | ||
# only for Mercurial, modify this: | ||||
Thomas Arendsen Hein
|
r796 | case "${EDITOR}" in | ||
"") | ||||
EDITOR="vi" | ||||
;; | ||||
Thomas Arendsen Hein
|
r348 | emacs) | ||
EDITOR="$EDITOR -nw" | ||||
;; | ||||
gvim|vim) | ||||
EDITOR="$EDITOR -f -o" | ||||
;; | ||||
esac | ||||
Thomas Arendsen Hein
|
r796 | |||
HGTMP="" | ||||
cleanup_exit() { | ||||
rm -rf "$HGTMP" | ||||
} | ||||
Thomas Arendsen Hein
|
r754 | # Remove temporary files even if we get interrupted | ||
Thomas Arendsen Hein
|
r831 | trap "cleanup_exit" 0 # normal exit | ||
trap "exit 255" 1 2 3 6 15 # HUP INT QUIT ABRT TERM | ||||
Thomas Arendsen Hein
|
r796 | |||
HGTMP="${TMPDIR-/tmp}/hgeditor.$RANDOM.$RANDOM.$RANDOM.$$" | ||||
(umask 077 && mkdir "$HGTMP") || { | ||||
echo "Could not create temporary directory! Exiting." 1>&2 | ||||
exit 1 | ||||
} | ||||
Thomas Arendsen Hein
|
r754 | ( | ||
cd "`hg root`" | ||||
grep '^HG: changed' "$1" | cut -b 13- | while read changed; do | ||||
Thomas Arendsen Hein
|
r796 | hg diff "$changed" >> "$HGTMP/diff" | ||
Thomas Arendsen Hein
|
r754 | done | ||
) | ||||
Thomas Arendsen Hein
|
r348 | |||
Thomas Arendsen Hein
|
r796 | echo > "$HGTMP/msg" | ||
Thomas Arendsen Hein
|
r754 | if [ "$SIGN" == "1" ]; then | ||
MANIFEST=`grep '^HG: manifest hash' "$1" | cut -b 19-` | ||||
Thomas Arendsen Hein
|
r796 | echo -e "\nmanifest hash: $MANIFEST" >> "$HGTMP/msg" | ||
Thomas Arendsen Hein
|
r754 | fi | ||
Thomas Arendsen Hein
|
r796 | grep -vE '^(HG: manifest hash .*)?$' "$1" >> "$HGTMP/msg" | ||
Matt Mackall
|
r684 | |||
Thomas Arendsen Hein
|
r796 | CHECKSUM=`md5sum "$HGTMP/msg"` | ||
Thomas Arendsen Hein
|
r1009 | if [ -s "$HGTMP/diff" ]; then | ||
$EDITOR "$HGTMP/msg" "$HGTMP/diff" || exit $? | ||||
else | ||||
$EDITOR "$HGTMP/msg" || exit $? | ||||
fi | ||||
Thomas Arendsen Hein
|
r831 | echo "$CHECKSUM" | md5sum -c >/dev/null 2>&1 && exit 13 | ||
Thomas Arendsen Hein
|
r754 | |||
if [ "$SIGN" == "1" ]; then | ||||
{ | ||||
Thomas Arendsen Hein
|
r796 | head -n 1 "$HGTMP/msg" | ||
Thomas Arendsen Hein
|
r754 | echo | ||
Thomas Arendsen Hein
|
r796 | grep -v "^HG:" "$HGTMP/msg" | gpg -t -a -u "${HGUSER}" --clearsign | ||
} > "$HGTMP/msg.gpg" && mv "$HGTMP/msg.gpg" "$1" | ||||
Thomas Arendsen Hein
|
r754 | else | ||
Thomas Arendsen Hein
|
r796 | mv "$HGTMP/msg" "$1" | ||
mpm@selenic.com
|
r186 | fi | ||
Thomas Arendsen Hein
|
r348 | |||
Thomas Arendsen Hein
|
r831 | exit $? | ||