Answers for "git remove file from repository and 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 {someFile}
Posted by: Guest on August-18-2021

Code answers related to "git remove file from repository and ignore"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language