Git flow (for Github)
Adds functionality to Github for working with the Git-flow workflow.
Cos'è Git flow (for Github)?
Git flow (for Github) è un'estensione di Chrome sviluppata da Jeroen Visser, e la sua funzione principale è "Adds functionality to Github for working with the Git-flow workflow.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Git flow (for Github)
Scarica i file di estensione Git flow (for Github) in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | Git flow (for Github) |
ID | fdlcmnpfgnebkpnoclaalonenhhbdpnf |
URL Ufficiale | https://chromewebstore.google.com/detail/git-flow-for-github/fdlcmnpfgnebkpnoclaalonenhhbdpnf |
Descrizione | Adds functionality to Github for working with the Git-flow workflow. |
Dimensione del File | 218 KB |
Conteggio Installazioni | 221 |
Versione Corrente | 3.0.1 |
Ultimo Aggiornamento | 2015-09-20 |
Data di Pubblicazione | 2015-09-20 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Jeroen Visser |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/jeroenvisser101/git-flow-on-github/issues |
Lingue Supportate | 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" ] } ] } |