Mercurial > public > mercurial-scm > hg-stable
view tests/test-revert-flags.t @ 52991:d7174b43f3e6
typing: fix the signature of `treemanifest.fastdelta()`
We're still missing a few explicit bits of Protocol subclassing, and pytype
found this when the subclassing is applied. So fix this first.
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Tue, 17 Dec 2024 19:29:08 -0500 |
parents | 7a9cbb315d84 |
children |
line wrap: on
line source
#require execbit $ hg init repo $ cd repo $ echo foo > foo $ chmod 644 foo $ hg ci -qAm '644' $ chmod 755 foo $ hg ci -qAm '755' reverting to rev 0 $ hg revert -a -r 0 reverting foo $ hg st M foo $ hg diff --git diff --git a/foo b/foo old mode 100755 new mode 100644 $ cd ..