@aubrey
To delete an ignored folder from Bitbucket, you will need to use the command line interface or terminal. Here's how you can do it:
1
|
git rm -r --cached path/to/ignored-folder |
This command will remove the ignored folder from the Git staging area.
1
|
git commit -m "Remove ignored folder" |
1
|
git push origin <branch-name> |
Replace <branch-name>
with the name of the branch you are working on.
After following these steps, the ignored folder should be removed from the Bitbucket repository.