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 site?
.pyc
files using git rm *.pyc
. If this not work use git rm -f *.pyc
git commit -a -m 'all pyc files removed'
git push
.pyc
files by creating a .gitignore
file