How to view the mercurial diff between local and repository?
Hi Using Mercurial I'm looking for a command to display for example files I didn't add. Can you specify if there's a name for the command I'm looking for? Like displaying the difference between the reposito开发者_StackOverflow社区ry and local. Thanks
hg status
will show the state of all modified, added, removed or unknown files. Use hg status --unknown
to show files in your working directory that aren't in the repository. It has several other command line switches as well: see hg help status
for details.
精彩评论