java - Remove folder in bitbucket -
i had eclipse project in bitbucket in bitbucket. changed package name of project , attempted push not let me used git push -f , pushed new package name kept old 1 also. not sure happened since new git. how delete old 1 or how complete remove in bitbucket repo , have have new package name?
if eclipse did rename package, means should not have anymore old folder representing old package.
switch command line, , confirm git status
: should show old package deleted.
if so:
cd /path/to/your/project/src git add -a . git commit -m "record deletion of old package" git push
then bitbucket reflect deletion of old package.
Comments
Post a Comment