Answers for "how to remove files from git ignore"

5

git ignore remove

git rm -r --cached .
git add .
git commit -m "Removing all files in .gitignore"
Posted by: Guest on November-30-2020
0

how to remove a file from git but keep local and ignore file

git rm --cached -r {someDir}
Posted by: Guest on August-18-2021

Code answers related to "how to remove files from git ignore"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language