Generic no backup on Revert for mercurial
How can I make a global 开发者_JS百科setting that will make the revert command ignore backup creation ?
You can make an alias in .hgrc
[alias]
revert = revert --no-backup
# or better make another name for this command
drop = revert --no-backup
精彩评论