# HG changeset patch # User Bryan O'Sullivan # Date 1239342721 25200 # Node ID eb11ec9eed8c49f1947f3a8e6f373fbacdd37e86 # Parent e9ef075327c100db6809c61395eb7cb912e54a86 Better file names diff -r e9ef075327c1 -r eb11ec9eed8c en/examples/daily.files --- a/en/examples/daily.files Mon Apr 06 23:15:52 2009 -0700 +++ b/en/examples/daily.files Thu Apr 09 22:52:01 2009 -0700 @@ -4,9 +4,9 @@ hg init add-example cd add-example -echo a > a +echo a > myfile.txt hg status -hg add a +hg add myfile.txt hg status hg commit -m 'Added one file' hg status @@ -14,10 +14,10 @@ #$ name: add-dir mkdir b -echo b > b/b -echo c > b/c +echo b > b/somefile.txt +echo c > b/source.cpp mkdir b/d -echo d > b/d/d +echo d > b/d/test.h hg add b hg commit -m 'Added all files in subdirectory'