##// END OF EJS Templates
censor: accept multiple revision in a single call...
censor: accept multiple revision in a single call This is useful when dealing with corruption, as all the corrupted revision can be dealt with in one go.

File last commit:

r52163:ceeb8fa2 default
r52163:ceeb8fa2 default
Show More
test-censor2.t
25 lines | 690 B | text/troff | Tads3Lexer
$ 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