Answers for "gitignore remove existing files from git"

2

add file to gitignore and remove from repo

git rm -r --cached .
Posted by: Guest on May-21-2020
0

remove gitignore files

git ls-files --ignored --exclude-standard -z | xargs -0 git rm --cached
git commit -am "Remove ignored files"


// answer from: thSoft
Posted by: Guest on June-26-2020

Code answers related to "gitignore remove existing files from git"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language