I've got some files in a repo that I don't want tracked, is it possible to remove them without removing the actual files from the filesystem?
This would be equivalent to git's rm --cached.
|
|
|
You can use The help is a bit misleading, it should be |
||||
|
|
|
It looks like This will mark a file so that it is no longer tracked after the next commit. |
||||
|
|
|
I believe you can simply ignore them by placing them in a .hgignore file in the folder. |
|||
|