I used hg forget <files>
to untrack some files without them being deleted from my file system like using hg rm <files>
does. I committed the change and running hg status
listed these files as being untracked ? <files>
as expected. I then pushed the changeset to our remote repository, someone else pulled and updated, and mercurial deleted these files from their file system!
Why doesn't Mercurial recognize these these files as being untracked with hg forget
on someone else's copy of the repository the same way it does in the copy the changes originated?
Is their another way of untracking files without them being deleted from anybody's file system?