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.

什麼是BitBucket Better PR Commit Message?

BitBucket Better PR Commit Message是由Sean Dwyer開發的Chrome擴展程式,該擴展的主要功能是“This extension replaces BitBucket's default pull request commit message with a more useful message, especially if you squash PRs.”。

擴展截圖

screenshot

下載BitBucket Better PR Commit Message擴展crx文件

下載BitBucket Better PR Commit Message擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 BitBucket Better PR Commit Message BitBucket Better PR Commit Message
ID pefbikdjkkbbkmlnmfoogcpomlcngaho
官方網址 https://chromewebstore.google.com/detail/bitbucket-better-pr-commi/pefbikdjkkbbkmlnmfoogcpomlcngaho
簡介 This extension replaces BitBucket's default pull request commit message with a more useful message, especially if you squash PRs.
檔案大小 5.87 KB
安裝次數 61
目前版本 1.1.3
更新時間 2023-01-24
上架時間 2020-11-24
評分 5.00/5 共 2 次評分
開發者 Sean Dwyer
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/reywood/bitbucket-pr-commit-message
說明頁面URL https://github.com/reywood/bitbucket-pr-commit-message
支援的語言 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"
            ]
        }
    ]
}