On my laravel installation i have an envoirement file and a folder of XML files that i need, but don't want to include in my git REPO.
On my local pc:
XML/
.env
i did:
git rm -r XML
git rm -r .env
And pushed the changes.
But that deleted the file from my pc, which i don't want. I only want to delete is from my git.
if i now pull on production it deleted the .env en XML file.
Any help is appreciated.