tests/test-empty-dir
author mwilli2@localhost.localdomain
Sun, 10 Jul 2005 16:03:20 -0800
changeset 669 8aa2a282eda4
parent 578 e33c85d2812a
child 749 7e4843b7efd2
permissions -rwxr-xr-x
.hgignore speedups patch incorporating Matt's feedback. # HG changeset patch # User mwilli2@localhost.localdomain # Node ID c78a9d4398c63b6bc689e456e1cab3850a846c8a # Parent 8c89408a7154d2da94766e957a088407fd0fef93 .hgignore speedups patch incorporating Matt's feedback.

#!/bin/sh

hg init
echo 123 > a
hg add a
hg commit -t "first" -u test -d "0 0" a
mkdir sub
echo 321 > sub/b
hg add sub/b
hg commit -t "second" -u test -d "0 0" sub/b
cat sub/b
hg co 0
cat sub/b
ls sub

true