Mercurial > hgbook
changeset 139:ceaca14e49f0
Add local regexps to ignore bits of output.
author | Bryan O'Sullivan <bos@serpentine.com> |
---|---|
date | Tue, 06 Mar 2007 20:46:07 -0800 |
parents | d374685eb7fa |
children | 5b034c2b74f7 |
files | en/examples/hook.simple en/examples/mq.tutorial en/examples/template.simple en/examples/tour en/examples/tour-merge-conflict |
diffstat | 5 files changed, 10 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/en/examples/hook.simple Tue Mar 06 20:45:50 2007 -0800 +++ b/en/examples/hook.simple Tue Mar 06 20:46:07 2007 -0800 @@ -1,6 +1,7 @@ #!/bin/bash #$ name: init +#$ ignore: [0-9a-f]{40} hg init hook-test cd hook-test @@ -12,8 +13,9 @@ hg commit -m 'testing commit hook' #$ name: ext +#$ ignore: ^date of commit.* -echo 'commit.when = echo "date of commit:"; date' >> .hg/hgrc +echo 'commit.when = echo -n "date of commit: "; date' >> .hg/hgrc echo a >> a hg commit -m 'i have two hooks'
--- a/en/examples/mq.tutorial Tue Mar 06 20:45:50 2007 -0800 +++ b/en/examples/mq.tutorial Tue Mar 06 20:46:07 2007 -0800 @@ -22,6 +22,7 @@ ls .hg/patches #$ name: qrefresh +#$ ignore: [0-9a-f]{12} echo 'line 2' >> file1 hg diff
--- a/en/examples/template.simple Tue Mar 06 20:45:50 2007 -0800 +++ b/en/examples/template.simple Tue Mar 06 20:46:07 2007 -0800 @@ -1,5 +1,9 @@ #!/bin/bash +# So many different bits of random output, it would be a nightmare to +# ignore each individually. +#$ ignore: .* + hg init myrepo cd myrepo echo hello > hello