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) -

java - JPA TypedQuery: Parameter value element did not match expected type -

c++ - static template member variable has internal linkage but is not defined -