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 - это расширение Chrome, разработанное Sean Dwyer, и его основная функция - "This extension replaces BitBucket's default pull request commit message with a more useful message, especially if you squash PRs.".
Снимки экрана расширения
Скачать файл CRX расширения BitBucket Better PR Commit Message
Скачайте файлы расширений 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 |
Электронная почта | [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" ] } ] } |