Git isn’t noticing the changes you made to your .gitignore file
If it seems like Git isn’t noticing the changes you made to your .gitignore file, you might want to check the following points: There might be a global .gitignore file that might interfere with your local one When you add something into a .gitignore file, try this: git add [uncommitted changes you want to keep] && git commitgit rm…