##// END OF EJS Templates
changeset_printer: hide manifest node for workingctx...
Yuya Nishihara -
r24585:e191d5d8 default
parent child Browse files
Show More
@@ -1151,7 +1151,7 b' class changeset_printer(object):'
1151 % (pctx.rev(), hexfunc(pctx.node())),
1151 % (pctx.rev(), hexfunc(pctx.node())),
1152 label=label)
1152 label=label)
1153
1153
1154 if self.ui.debugflag:
1154 if self.ui.debugflag and rev is not None:
1155 mnode = ctx.manifestnode()
1155 mnode = ctx.manifestnode()
1156 # i18n: column positioning for "hg log"
1156 # i18n: column positioning for "hg log"
1157 self.ui.write(_("manifest: %d:%s\n") %
1157 self.ui.write(_("manifest: %d:%s\n") %
@@ -1633,6 +1633,15 b' working-directory revision requires spec'
1633 $ hg log -r 'wdir()' -q
1633 $ hg log -r 'wdir()' -q
1634 0:65624cd9070a+
1634 0:65624cd9070a+
1635
1635
1636 $ hg log -r 'wdir()' --debug
1637 changeset: 0:65624cd9070a035fa7191a54f2b8af39f16b0c08+
1638 phase: draft
1639 parent: 0:65624cd9070a035fa7191a54f2b8af39f16b0c08
1640 parent: -1:0000000000000000000000000000000000000000
1641 user: test
1642 date: [A-Za-z0-9:+ ]+ (re)
1643 extra: branch=default
1644
1636 Check that adding an arbitrary name shows up in log automatically
1645 Check that adding an arbitrary name shows up in log automatically
1637
1646
1638 $ cat > ../names.py <<EOF
1647 $ cat > ../names.py <<EOF
General Comments 0
You need to be logged in to leave comments. Login now