Newer
Older
yatex / hg2cvsci.sh
@yuuji@gentei.org yuuji@gentei.org on 15 Oct 2009 390 bytes Define $hg in case called from command line.
#!/bin/sh
# This script does not support automatic "cvs add".
# If new file is added by "hg add", don't forget to "cvs add" in
# CVS working dir.
#
# This script should be called via incoming hook in .hg/hgrc as below.
# [hooks]
# incoming.cvsci = ./hg2cvsci.sh

node=${HG_NODE:-tip}
hg=${HG:-hg}
msg=`hg log -r $node --template '{desc}\n'`
cd `dirname $0`
$hg up -r $node
cvs ci -m "$msg"