Show More
@@ -339,20 +339,20 b' transaction)' | |||||
339 | > from __future__ import absolute_import |
|
339 | > from __future__ import absolute_import | |
340 | > |
|
340 | > | |
341 | > def showtip(ui, repo, hooktype, **kwargs): |
|
341 | > def showtip(ui, repo, hooktype, **kwargs): | |
342 | > ui.warn('%s: %s\n' % (hooktype, repo['tip'].hex()[:12])) |
|
342 | > ui.warn(b'%s: %s\n' % (hooktype, repo[b'tip'].hex()[:12])) | |
343 | > |
|
343 | > | |
344 | > def reposetup(ui, repo): |
|
344 | > def reposetup(ui, repo): | |
345 | > # this confirms (and ensures) that (empty) 00changelog.i |
|
345 | > # this confirms (and ensures) that (empty) 00changelog.i | |
346 | > # before streamclone is already cached as repo.changelog |
|
346 | > # before streamclone is already cached as repo.changelog | |
347 | > ui.setconfig('hooks', 'pretxnopen.showtip', showtip) |
|
347 | > ui.setconfig(b'hooks', b'pretxnopen.showtip', showtip) | |
348 | > |
|
348 | > | |
349 | > # this confirms that streamclone-ed changes are visible to |
|
349 | > # this confirms that streamclone-ed changes are visible to | |
350 | > # in-process procedures before closing transaction |
|
350 | > # in-process procedures before closing transaction | |
351 | > ui.setconfig('hooks', 'pretxnclose.showtip', showtip) |
|
351 | > ui.setconfig(b'hooks', b'pretxnclose.showtip', showtip) | |
352 | > |
|
352 | > | |
353 | > # this confirms that streamclone-ed changes are still visible |
|
353 | > # this confirms that streamclone-ed changes are still visible | |
354 | > # after closing transaction |
|
354 | > # after closing transaction | |
355 | > ui.setconfig('hooks', 'txnclose.showtip', showtip) |
|
355 | > ui.setconfig(b'hooks', b'txnclose.showtip', showtip) | |
356 | > EOF |
|
356 | > EOF | |
357 | $ cat >> $HGRCPATH <<EOF |
|
357 | $ cat >> $HGRCPATH <<EOF | |
358 | > [extensions] |
|
358 | > [extensions] |
General Comments 0
You need to be logged in to leave comments.
Login now