Git flow (for Github)

Adds functionality to Github for working with the Git-flow workflow.

Git flow (for Github)란 무엇입니까?

Git flow (for Github)은(는) Jeroen Visser에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds functionality to Github for working with the Git-flow workflow."입니다.

확장 프로그램 스크린샷

screenshot

Git flow (for Github) 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension adds Git-flow functionality to Github.

Github, by default, does not offer much functionality to work with Git-flow. You still have to watch out a lot, and make sure you don't compare to the wrong branch. This extension takes that all out of your hands.

This extension also enables pull request templates.

Please submit bugs to https://github.com/jeroenvisser101/git-flow-on-github/issues                    

확장 프로그램 기본 정보

이름 Git flow (for Github) Git flow (for Github)
ID fdlcmnpfgnebkpnoclaalonenhhbdpnf
공식 URL https://chromewebstore.google.com/detail/git-flow-for-github/fdlcmnpfgnebkpnoclaalonenhhbdpnf
설명 Adds functionality to Github for working with the Git-flow workflow.
파일 크기 218 KB
설치 횟수 221
현재 버전 3.0.1
최근 업데이트 2015-09-20
출시 날짜 2015-09-20
평점 5.00/5 총 1 개의 평점
개발자 Jeroen Visser
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/jeroenvisser101/git-flow-on-github/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Jeroen Visser",
    "short_name": "Git flow",
    "name": "Git flow (for Github)",
    "version": "3.0.1",
    "manifest_version": 2,
    "description": "Adds functionality to Github for working with the Git-flow workflow.",
    "icons": {
        "16": "icons\/icon-16.png",
        "32": "icons\/icon-32.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png",
        "256": "icons\/icon-256.png",
        "512": "icons\/icon-512.png"
    },
    "permissions": [
        "*:\/\/*.github.com\/*",
        "storage"
    ],
    "options_page": "options\/options.html",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.github.com\/*"
            ],
            "js": [
                "src\/functions.js",
                "src\/common.js",
                "src\/pr-template.js",
                "src\/disable-merge-button.js",
                "src\/pr-under-construction.js",
                "src\/fix-compare.js",
                "src\/fix-title.js"
            ]
        }
    ]
}