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.」です。
拡張機能のスクリーンショット
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 |
ID | pefbikdjkkbbkmlnmfoogcpomlcngaho |
公式URL | 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 |
Eメール | [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" ] } ] } |