Equivalent of git ls-files in mercurial?
How can开发者_运维问答 I see the files which are currently in my mercurial
repository?
Since the working directory has both tracked and untracked files.
hg manifest
will list files in commits, defaulting to the first parent of the working directory. hg status
with various flags will list files that are tracked or untracked.
精彩评论