comparison tests/test-addremove.t @ 23749:a387b0390082

localrepo: show headline notes in commitctx before showing filenames commitctx already showed notes with filenames but didn't provide any context. It is just as relevant to know when manifest or changelog is committed. So, in addition to filenames, also show headlines 'committing files:', 'committing manifest' and 'committing changelog'.
author Mads Kiilerich <madski@unity3d.com>
date Fri, 18 Apr 2014 13:33:20 +0200
parents 72c23fa4f52f
children d8e0c591781c
comparison
equal deleted inserted replaced
23748:4ab66de46a96 23749:a387b0390082
4 $ touch foo dir/bar 4 $ touch foo dir/bar
5 $ hg -v addremove 5 $ hg -v addremove
6 adding dir/bar 6 adding dir/bar
7 adding foo 7 adding foo
8 $ hg -v commit -m "add 1" 8 $ hg -v commit -m "add 1"
9 committing files:
9 dir/bar 10 dir/bar
10 foo 11 foo
12 committing manifest
13 committing changelog
11 committed changeset 0:6f7f953567a2 14 committed changeset 0:6f7f953567a2
12 $ cd dir/ 15 $ cd dir/
13 $ touch ../foo_2 bar_2 16 $ touch ../foo_2 bar_2
14 $ hg -v addremove 17 $ hg -v addremove
15 adding dir/bar_2 18 adding dir/bar_2
16 adding foo_2 19 adding foo_2
17 $ hg -v commit -m "add 2" 20 $ hg -v commit -m "add 2"
21 committing files:
18 dir/bar_2 22 dir/bar_2
19 foo_2 23 foo_2
24 committing manifest
25 committing changelog
20 committed changeset 1:e65414bf35c5 26 committed changeset 1:e65414bf35c5
21 $ cd .. 27 $ cd ..
22 $ hg forget foo 28 $ hg forget foo
23 $ hg -v addremove 29 $ hg -v addremove
24 adding foo 30 adding foo