##// END OF EJS Templates
tests: add test of for hash reference translation by `hg convert`...
Martin von Zweigbergk -
r42245:f46c1a9b default
parent child Browse files
Show More
@@ -206,3 +206,19 b' manifest -r tip'
206 a
206 a
207 c
207 c
208 d
208 d
209 $ cd ..
210
211 $ hg init commit-references
212 $ cd commit-references
213 $ echo a > a
214 $ hg ci -Aqm initial
215 $ echo b > b
216 $ hg ci -Aqm 'the previous commit was 1451231c8757'
217
218 $ cd ..
219 $ hg convert commit-references new-commit-references -q \
220 > --config convert.hg.sourcename=yes
221 $ cd new-commit-references
222 $ hg log -T '{node|short} {desc}\n'
223 642508659503 the previous commit was c2491f685436
224 c2491f685436 initial
General Comments 0
You need to be logged in to leave comments. Login now