comparison tests/test-encoding.t @ 34661:eb586ed5d8ce

transaction-summary: show the range of new revisions upon pull/unbundle (BC) Upon pull or unbundle, we display a message with the range of new revisions fetched. This revision range could readily be used after a pull to look out what's new with 'hg log'. The algorithm takes care of filtering "obsolete" revisions that might be present in transaction's "changes" but should not be displayed to the end user.
author Denis Laxalde <denis.laxalde@logilab.fr>
date Thu, 12 Oct 2017 09:39:50 +0200
parents 8e6f4939a69a
children 035af48b2903
comparison
equal deleted inserted replaced
34660:d00ec62d156f 34661:eb586ed5d8ce
8 $ hg unbundle "$TESTDIR/bundles/legacy-encoding.hg" 8 $ hg unbundle "$TESTDIR/bundles/legacy-encoding.hg"
9 adding changesets 9 adding changesets
10 adding manifests 10 adding manifests
11 adding file changes 11 adding file changes
12 added 2 changesets with 2 changes to 1 files 12 added 2 changesets with 2 changes to 1 files
13 new changesets 1e78a93102a3:0e5b7e3f9c4a
13 (run 'hg update' to get a working copy) 14 (run 'hg update' to get a working copy)
14 $ hg co 15 $ hg co
15 1 files updated, 0 files merged, 0 files removed, 0 files unresolved 16 1 files updated, 0 files merged, 0 files removed, 0 files unresolved
16 $ $PYTHON << EOF 17 $ $PYTHON << EOF
17 > f = file('latin-1', 'w'); f.write("latin-1 e' encoded: \xe9"); f.close() 18 > f = file('latin-1', 'w'); f.write("latin-1 e' encoded: \xe9"); f.close()