I'm running Mercurial 1.6.4 on my Debian server. It is not showing modified files that I know have been modified.

I'll modify a file, and an hg status will show:

! filename.txt

Then I run an hg status again and nothing shows up. I've tried to check in a file I know was modified, and alas, Mercurial says nothing was changed.

I even ran a hg st --all | grep 'M ' and it shows the modified files! Yet I can't check them in.

link|improve this question
! means deleted, not modified. – Lasse V. Karlsen Nov 12 '10 at 20:03
1  
Are you saying that if you run hg status twice, the first time it'll show your file as deleted, and the second time it won't show it at all? – Lasse V. Karlsen Nov 12 '10 at 20:05
1  
What does your .hgignore contain? – OJ. Nov 12 '10 at 20:55
To Lasse, yes, that is what I'm saying. – leftnode Nov 15 '10 at 10:04
To OJ - just to ignore a single file. It's something to do with that server, I believe, because Mercurial works just fine on my local Linux machine. I guess I'll just reinstall it. – leftnode Nov 15 '10 at 10:05
feedback

2 Answers

You should double-check that the inotify extension has not been enabled without your knowledge. Some older Debian packaged enabled it by default in the system-wide config. Use

hg showconfig --debug extensions

to list the enabled extensions and to list where each setting is read from. If it is enabled, you can disable it by adding

[extensions]
inotify = !

to your ~/.hgrc file or by editing the global config file.

link|improve this answer
feedback

I've tried to check in a file I know was modified, and alas, Mercurial says nothing was changed.

If you 'check it in', ie: commit, then status will not show it as modified because it has not been modified since the last commit.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.