Mercurial > hgrepos > hgweb.cgi > yatex
view hg2cvsci.sh @ 493:a9f39600366a
Added tag yatex-1.80 for changeset a2bb2426a154
author | HIROSE Yuuji <yuuji@gentei.org> |
---|---|
date | Sun, 10 Sep 2017 21:47:29 +0859 |
parents | 4f0cb7114235 |
children |
line wrap: on
line source
#!/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"