tecnocrata
tecnocrata

Reputation: 891

How to delete all the issues in the Bitbucket?

I'm facing a "trouble in the bitbucket". I made a batch that connects the bitbucket and the trello, but now I'm facing more issues. That said, how can I delete all the issues listed in my repo without editing them individually?

Upvotes: 6

Views: 884

Answers (1)

Roman Danyk
Roman Danyk

Reputation: 41

You may just import zip archive with JSON file named db-1.0.json like this:

{
    "milestones": [],
    "attachments": [],
    "versions": [],
    "comments": [],
    "meta": {
        "default_milestone": null,
        "default_assignee": null,
        "default_kind": "bug",
        "default_component": null,
        "default_version": null
    },
    "components": [],
    "issues": [],
    "logs": []
}

For import archive go to Your repository -> Settings -> Issue -> Import & Export.

Upvotes: 4

Related Questions