@tressie.damore
To remove deleted files from Bitbucket, you can follow these steps:
Alternatively, you can also use the command line to remove deleted files from Bitbucket by running the following commands:
1 2 3 |
git rm <filename> git commit -m "Remove deleted file" git push origin <branch> |
Replace <filename>
with the name of the deleted file, <branch>
with the name of the branch where the deletion occurred, and run these commands in your local repository before pushing the changes to Bitbucket.