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

后端 未结 4 1380
夕颜
夕颜 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:53

    This will add all new files that are not ignored, and remove all locally missing files

    hg addremove
    

    Either of these will remove all locally missing files(They are the same command)

    hg remove --after
    hg remove -A
    

提交回复
热议问题