robertgarrigos's picture

Hey, I wanted to ask you how do you work with .gitignore on your fork of backdrop: .gitignore includes an entry for it self, but as it is already tracked, any local changes to  the file will be pushed to my fork and added to the eventual PR I made for the upstream. So I need to untrack it.

git rm --cached .gitignore indeed untracks locally the file, but it also deletes the file in my fork repo and would delete it in a PR.

Thus, how do you do to change your local .gitignore without pushing its changes?

Thanks!!