I need to delete a directory of tracked files from my local working directory but not from the remote git server.
I tried git rm --cached
but it seems like it will commit those changes to the server. I want the files to remain tracked on the server.
Any help would be appreciated. Thanks