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 là gì?

BitBucket Better PR Commit Message là một tiện ích mở rộng Chrome được phát triển bởi Sean Dwyer, và tính năng chính của nó là "This extension replaces BitBucket's default pull request commit message with a more useful message, especially if you squash PRs.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng BitBucket Better PR Commit Message

Tải xuống các tệp mở rộng BitBucket Better PR Commit Message dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên BitBucket Better PR Commit Message BitBucket Better PR Commit Message
ID pefbikdjkkbbkmlnmfoogcpomlcngaho
URL Chính Thức https://chromewebstore.google.com/detail/bitbucket-better-pr-commi/pefbikdjkkbbkmlnmfoogcpomlcngaho
Mô tả This extension replaces BitBucket's default pull request commit message with a more useful message, especially if you squash PRs.
Kích Thước Tệp 5.87 KB
Số Lần Cài Đặt 61
Phiên Bản Hiện Tại 1.1.3
Cập Nhật Lần Cuối 2023-01-24
Ngày Phát Hành 2020-11-24
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Sean Dwyer
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/reywood/bitbucket-pr-commit-message
URL Trang Trợ Giúp https://github.com/reywood/bitbucket-pr-commit-message
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}