leglesslizard
2/13/2017 - 2:34 AM

Remove ignored files from remote with git

Remove ignored files from remote with git

git rm -r --cached . 
git add .
git commit -m 'Removed all files that are in the .gitignore' 
git push origin master