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

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -