tests/test-revert-flags.t
author Pierre-Yves David <pierre-yves.david@octobus.net>
Thu, 15 Apr 2021 11:46:31 +0200
changeset 47030 c2b5365aa827
parent 22046 7a9cbb315d84
permissions -rw-r--r--
urlutil: introduce a new `list_paths` function This function will be useful for command and template that wants to display path related information. Differential Revision: https://phab.mercurial-scm.org/D10440

#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 ..