Mercurial > hg
view tests/test-diffdir @ 1418:68f81ba07b2a
Make hgweb work when the repository is empty (no 00changelog.i)
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Thu, 20 Oct 2005 11:41:14 -0700 |
parents | 4f81068ed8cd |
children | fde8fb2cbede |
line wrap: on
line source
#!/bin/sh hg init touch a hg add a hg ci -m "a" -d "0 0" echo 123 > b hg add b hg diff | sed -e "s/\(+++ [a-zA-Z0-9_/.-]*\).*/\1/" \ -e "s/\(--- [a-zA-Z0-9_/.-]*\).*/\1/" hg diff -r tip | sed -e "s/\(+++ [a-zA-Z0-9_/.-]*\).*/\1/" \ -e "s/\(--- [a-zA-Z0-9_/.-]*\).*/\1/"