changeset 770:eb11ec9eed8c

Better file names
author Bryan O'Sullivan <bos@serpentine.com>
date Thu, 09 Apr 2009 22:52:01 -0700
parents e9ef075327c1
children b338f5490029
files en/examples/daily.files
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- 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'