When you use
git rm --cached myfile
it doesn\'t delete from the local filesystem, which is the goal. But if you\'ve already versioned and c
To remove the file from the index, use:
git reset myfile
This should not affect your local copy or anyone else's.