hg remove directory from repo?

前端 未结 3 2209
不知归路
不知归路 2021-02-12 15:36

I\'d like to remove a directory and all the files in it from a repo.

I have removed all the files with hg remove, but how do I remove the directory itself?

3条回答
  •  无人共我
    2021-02-12 16:16

    To remove a directory, Just do

    hg remove 
    hg commit -m "..."
    

    This will remove the directory and all files under it.

提交回复
热议问题