My BitBucket repository does not show several branches but running git locally in bash:
git fetch --all; git branch -a;
does show those remote branches.
When I try deleting them in git locally:
git push origin --delete <name_of_branch>
I get an error that these branches are not found.
Could these branches be cached locally and can this cache be cleared ?