Answers for "gitignore not ignoring dist"

13

.gitignore file not ignoring the file

git rm -r --cached .
git add .
git commit -m “.gitignore is now working”
Posted by: Guest on May-31-2020
1

.gitignore is not ignoring directories

stack overflow url: https://stackoverflow.com/questions/22924633/gitignore-is-not-ignoring-directories

git rm -r --cached node_modules
git commit -m "removing node_modules"
Posted by: Guest on January-13-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language