0

When I run git status I see this line:

    modified:   .firebase/hosting.YnRpsGK.cache

I tried adding those lines to .gitignore:

*/firebase
**/firebase
.firebase
firebase
./firebase
.firebase/
*.firebase/

But nothing seems to ignore that firebase cache file. What is the right way to do it?

phd
  • 69,888
  • 11
  • 97
  • 133
Commando
  • 292
  • 2
  • 13
  • 2
    The correct line to add is **.firebase/**. If you have already added **.firebase** to the repository, you can remove it from the repository with **git rm --cached -r .firebase** followed by a **git commit**. – John Hanley Aug 07 '21 at 06:35

0 Answers0