rm
This command will stop git from tracking a file but it will not remove the file from the file system.
git rm --cached file-name.html
copy
This command will stop git from tracking a file but it will not remove the file from the file system.
git rm --cached file-name.html
copy