I've been using Mercurial for a couple weeks without issues, but I've run into a question this morning. I've tried running both "hg pull" and "hg update" to get all file changes from the repository as follows. However, when I run "hg diff" afterwards, I still see file changes.
> hg pull
searching for changes
adding changesets
adding manifests
adding file changes
added 7 changesets with 8 changes to 6 files
> hg update
6 files updated, 0 files merged, 0 files removed, 0 files unresolved
> hg diff
(a file change is listed)
How do I get to the point where "hg diff" will yield zero changes?
PS - hg status yields one change:
M aPath\bPath\cPath\MyForm.Designer.cs
hg status? Perhaps you have a file that has been added, but not yet committed to your local repo? – Tim Henigan Nov 14 '12 at 18:19