Mercurial > hg
view tests/test-diffdir @ 1713:03ee100b8c21
hooks: distinguish between locally committed and incoming changes.
"commit" hook is now for locally committed changes only.
"incoming" is for changes pulled, pushed, or unbundled into local repo.
author | Daniel Santa Cruz <byteshack@gmail.com> |
---|---|
date | Fri, 10 Feb 2006 16:45:56 -0500 |
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/"