Show More
@@ -60,34 +60,38 b' hg help showoptlist' | |||||
60 | #### - user names in annotate |
|
60 | #### - user names in annotate | |
61 | #### - file names in diffstat |
|
61 | #### - file names in diffstat | |
62 |
|
62 | |||
|
63 | rm -f s; touch s | |||
|
64 | rm -f m; touch m | |||
|
65 | rm -f l; touch l | |||
|
66 | ||||
63 | #### add files |
|
67 | #### add files | |
64 |
|
68 | |||
65 | touch $S |
|
69 | cp s $S | |
66 | hg add $S |
|
70 | hg add $S | |
67 | touch $M |
|
71 | cp m $M | |
68 | hg add $M |
|
72 | hg add $M | |
69 | touch $L |
|
73 | cp l $L | |
70 | hg add $L |
|
74 | hg add $L | |
71 |
|
75 | |||
72 | #### commit(1) |
|
76 | #### commit(1) | |
73 |
|
77 | |||
74 | echo 'first line(1)' >> $S |
|
78 | echo 'first line(1)' >> s; cp s $S | |
75 | echo 'first line(2)' >> $M |
|
79 | echo 'first line(2)' >> m; cp m $M | |
76 | echo 'first line(3)' >> $L |
|
80 | echo 'first line(3)' >> l; cp l $L | |
77 | hg commit -m 'first commit' -u $S -d "1000000 0" |
|
81 | hg commit -m 'first commit' -u $S -d "1000000 0" | |
78 |
|
82 | |||
79 | #### commit(2) |
|
83 | #### commit(2) | |
80 |
|
84 | |||
81 | echo 'second line(1)' >> $S |
|
85 | echo 'second line(1)' >> s; cp s $S | |
82 | echo 'second line(2)' >> $M |
|
86 | echo 'second line(2)' >> m; cp m $M | |
83 | echo 'second line(3)' >> $L |
|
87 | echo 'second line(3)' >> l; cp l $L | |
84 | hg commit -m 'second commit' -u $M -d "1000000 0" |
|
88 | hg commit -m 'second commit' -u $M -d "1000000 0" | |
85 |
|
89 | |||
86 | #### commit(3) |
|
90 | #### commit(3) | |
87 |
|
91 | |||
88 | echo 'third line(1)' >> $S |
|
92 | echo 'third line(1)' >> s; cp s $S | |
89 | echo 'third line(2)' >> $M |
|
93 | echo 'third line(2)' >> m; cp m $M | |
90 | echo 'third line(3)' >> $L |
|
94 | echo 'third line(3)' >> l; cp l $L | |
91 | hg commit -m 'third commit' -u $L -d "1000000 0" |
|
95 | hg commit -m 'third commit' -u $L -d "1000000 0" | |
92 |
|
96 | |||
93 | #### check |
|
97 | #### check |
General Comments 0
You need to be logged in to leave comments.
Login now