nomeyer
3/3/2016 - 2:52 PM

Remove a tracked directory from remote after adding to .gitignore (from http://stackoverflow.com/questions/7927230/remove-directory-from-rem

git rm -r --cached some-directory
git commit -m 'Remove the now ignored directory "some-directory"'
git push origin master