git - Files kept in bitbucket after delete -


I have a problem similar to the question, although there is no answer to it and it seems that it has been omitted

In short I have deleted some files from my local store, and git add is done. git status says that files are deleted and committed also accepts that when I push me The message of everything has been updated and the files are not deleted from my BitBasket account.

If you have a git add , then your deleted guitars are not recognized after you delete them. You must use

  git add -A   

apply an underlying git rm of all files to be deleted to do.

Comments

Popular posts from this blog

Java - Error: no suitable method found for add(int, java.lang.String) -

c# - passing input text from view to contoller with FacebookContext using Facebook app -

Calling a C++ function from C# by passing a string with variable size to it -