backout: migrate `opts` to native kwargs
It will take a bit to unwind `cmdutil.commit`, so there's a conversion to
byteskwargs there, without changing the type of `opts` in this function. That's
also useful to flag it as needing to be changed.
$ 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 ".^^"
$ 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