Eliminar un archivo del repositorio de GitHub después de empujar

git rm --cache /path/to/file
git commit -am "Remove file"
git push
Calm Camel