mercurialtortoisesvntortoisehg

In Mercurial, How to check the revision log of a specific folder?


So here is an example folder hierarchy:

c:\MyProject
c:\MyProject\Folder1
c:\Myproject\Folder2

In SVN, If I am only interested in looking at the history of changes in c:\MyProject\Folder1 I could just navigate to that folder, right click and view log.

With Mercurial doing the same thing shows all the changes in the entire MyProject. Is there a way to filter out and show me only changes in Folder1 (And its sub-folders) ?


Solution

  • It pretty much works as you would expect, same as for svn log:

    hg log c:\MyProject\Folder1