view tests/test-empty-dir @ 722:e5b39ce2c3c9

Add doc/Makefile to MANIFEST manifest hash: 1fc29da9334caa71ff8df55c52747f9c93df7e0f
author mpm@selenic.com
date Wed, 20 Jul 2005 11:40:27 -0500
parents e33c85d2812a
children 7e4843b7efd2
line wrap: on
line source

#!/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