Accidentally, I have pushed the .pyc files to the master repository. Now I want to delete them but I can´t do it. Is there any way to remove them directly from the Bitbucket sit
To remove all .pyc files use git rm -rf *.pyc
.pyc
git rm -rf *.pyc
Then add the *.py[co] to your .gitignore file. (This will prevent .pyc and .pyo files from getting committed in the future commits)
*.py[co]