Mercurial Netbeans output file not tracked!

I use Mercurial in Netbeans, everything works fine until I received this message:

Output: [abort: helper.php: file not tracked!]

I remember that I renamed this file once from outside Netbeans (renaming the file directory), it was Helper.php (with H instead of h).

I returned it to Helper.php from Netbeans and from the file directory, another message:

Output: [abort: helper.php: file not tracked!]

How can I add this file again to track it with the rest of the files?

+3
source share
2 answers

I think I had the same problem. I just renamed the file via cmd and returned to my true (desired) name and the problem disappeared.

> hg rename myname.java someothername.java
> hg rename someothername.java myname.java
+4
source

hg stat hg summary ? ? Case Folding, Mercurial, hg rename --after.

+2

All Articles