BitBucket Better PR Commit Message

This extension replaces BitBucket's default pull request commit message with a more useful message, especially if you squash PRs.

Was ist BitBucket Better PR Commit Message?

BitBucket Better PR Commit Message ist eine Chrome-Erweiterung, die von Sean Dwyer entwickelt wurde, und ihr Hauptmerkmal ist "This extension replaces BitBucket's default pull request commit message with a more useful message, especially if you squash PRs.".

Erweiterungsscreenshots

screenshot

BitBucket Better PR Commit Message-Erweiterungs-CRX-Datei herunterladen

Laden Sie BitBucket Better PR Commit Message-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        If your development workflow involves creating a pull request for every change, and you squash your PRs with the default commit message when you merge them, then your commit history has a bunch of entries that all look like "Merged in my-terse-branch-name (pull request #123)". These aren't especially helpful commit messages and "Merged in" just becomes noise. This extension will use the title of your PR as the commit message instead which should lead to a much more useful commit history. The bulleted list of individual commit messages and approvals will still appear in the body of the commit message.

To tell Atlassian that this should be the default behavior, go to the following URL and vote for the issue.

https://jira.atlassian.com/browse/BCLOUD-19402                    

Grundlegende Informationen zur Erweiterung

Name BitBucket Better PR Commit Message BitBucket Better PR Commit Message
ID pefbikdjkkbbkmlnmfoogcpomlcngaho
Offizielle URL https://chromewebstore.google.com/detail/bitbucket-better-pr-commi/pefbikdjkkbbkmlnmfoogcpomlcngaho
Beschreibung This extension replaces BitBucket's default pull request commit message with a more useful message, especially if you squash PRs.
Dateigröße 5.87 KB
Installationsanzahl 61
Aktuelle Version 1.1.3
Letztes Update 2023-01-24
Veröffentlichungsdatum 2020-11-24
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Sean Dwyer
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/reywood/bitbucket-pr-commit-message
Hilfeseite URL https://github.com/reywood/bitbucket-pr-commit-message
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "BitBucket Better PR Commit Message",
    "description": "This extension replaces BitBucket's default pull request commit message with a more useful message, especially if you squash PRs.",
    "version": "1.1.3",
    "homepage_url": "https:\/\/github.com\/reywood\/bitbucket-pr-commit-message",
    "author": "Sean Dwyer",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/bitbucket.org\/*\/pull-requests\/*"
            ],
            "js": [
                "src\/index.js"
            ]
        }
    ]
}