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 If you have a apply an underlying 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.
git add , then your deleted guitars are not recognized after you delete them. You must use
git add -A
git rm of all files to be deleted to do.
Comments
Post a Comment