You can just use hg forget or maybe add the file to your .hgignore file. And to answer the last question about the R in my_file . If you see the help for hg rm -- help ...
How to stop tracking a file¶. Once you decide that a file no longer belongs in your repository, use the hg remove command. This deletes the ...
Stop Tracking ( hg remove or hg forget ) means that Mercurial will not record any changes made to the file and the file will no longer be part of the repository.
You can use hg forget
This deletes the file, and tells Mercurial to stop tracking it (which will occur at the next commit). A removed file is represented in the output of hg status with a “ R ”.
Stop tracking & delete. hg copy file target. Copy file. hg move file target. Move file.
stop tracking a file. 24. $hg remove
You can list a filename or a directory. Or “ .” to select all. remove, delete the file and tell Mercurial to stop tracking it. ( ...
Now I can use hg untrack whatever.py to stop tracking a file. Addremove Can Track Renames But Won't Unless You Ask It Really Nicely. It took ...
hg add file. Begin tracking changes. hg addremove. Track new, forget missing. hg forget file. Stop tracking file. hg remove file. Stop tracking & ...