Hi! hg ci doesn't accept removed directories as arguments: # hg init # mkdir a # touch a/b # hg add a adding a/b # hg ci -m 'Add a/b.' # hg rm a removing a/b # hg ci a abort: file a not found! # I think this is inconsistent. "hg ci a/b" works, but is cumbersome for directories with more than one entry. Cheers, Thomas