How to do Mercurial's 'hg remove' for all missing files?

后端 未结 4 1378
夕颜
夕颜 2020-12-22 16:12

I use this to remove a file from the repo:

hg remove  

What command can you use to do an hg remove on

4条回答
  •  甜味超标
    2020-12-22 16:45

    If you intend to do addremove and commit, it can be joined with '-A' option as shown here:

    hg commit -A -m 'Commit with addremove'
    

提交回复
热议问题