Reputation: 4533
I want to find out which change sets have modifications to a file called WRAPPER.CPP.
I have tried "hg log [relative_path_to_file]WRAPPER.CPP"
I have tried changing directories to [relative_path_to_file] and then "hg log WRAPPER.CPP"
Neither gives me any output.
I am on Windows.
What am I doing wrong?
Upvotes: 1
Views: 92
Reputation: 78350
Mercurial is case sensitive. Are you sure the case on the file name as you're entering the command matches how it's actually committed? "hg manifest" should help you check.
Upvotes: 4