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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } ] } |