Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Equivalent of git ls-files in mercurial?

Tags:

git

mercurial

How can I see the files which are currently in my mercurial repository?

Since the working directory has both tracked and untracked files.

like image 210
Vaibhav Bajpai Avatar asked Aug 10 '11 15:08

Vaibhav Bajpai


1 Answers

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.

like image 71
Josh Lee Avatar answered Oct 30 '22 14:10

Josh Lee