Mercurial > hg
view tests/test-censor2.t @ 51675:bc94cbb49b30
typing: add some trivial type hints to `mercurial/match.py`
These were new methods since hg 3dbc7b1ecaba, but surprisingly pytype couldn't
figure them out.
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Wed, 10 Jul 2024 17:55:14 -0400 |
parents | ceeb8fa23cc8 |
children |
line wrap: on
line source
$ cat >> $HGRCPATH <<EOF > [censor] > policy=ignore > EOF $ mkdir r $ cd r $ hg init $ echo secret > target $ hg commit -Am "secret" adding target $ touch bystander $ hg commit -Am "innocent" adding bystander $ echo erased-secret > target $ hg commit -m "erased secret" $ hg censor target --config extensions.censor= -r ".^^" checking for the censored content in 1 heads checking for the censored content in the working directory censoring 1 file revisions $ hg update ".^" 1 files updated, 0 files merged, 0 files removed, 0 files unresolved $ cat target $ hg update tip 1 files updated, 0 files merged, 0 files removed, 0 files unresolved