How can I untrack a file but not remove it from upstream?
When I tried to do: git rm --cached "file"
then it says that its deleted.
then I add and commit and push it. Now the file has been removed from upstream.
This is not what I want. I want it to still be in the upstream, but not longer tracked for changes on my local. Can this be done?