Git Eliminar la carpeta del repositorio
# the -r option will recursively delete the folder
git rm -r folder-name
# commit changes
git commit -m "Remove duplicated directory"
Danger_Noodle_Snek