Reputation: 205
I am working on a Git repo in bitbucket
I deleted 2 files and did push command and. I still see the files in the repo.
I always push to the master branch
Upvotes: 3
Views: 5022
Reputation: 840
Add all the deleted changes using the command given below and then push it.
git add --all
Upvotes: 3