Git flow (for Github)
Adds functionality to Github for working with the Git-flow workflow.
Qu'est-ce que Git flow (for Github) ?
Git flow (for Github) est une extension Chrome développée par Jeroen Visser, et sa fonction principale est "Adds functionality to Github for working with the Git-flow workflow.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Git flow (for Github)
Téléchargez les fichiers d'extension Git flow (for Github) au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Git flow (for Github) |
ID | fdlcmnpfgnebkpnoclaalonenhhbdpnf |
URL Officiel | https://chromewebstore.google.com/detail/git-flow-for-github/fdlcmnpfgnebkpnoclaalonenhhbdpnf |
Description | Adds functionality to Github for working with the Git-flow workflow. |
Taille du Fichier | 218 KB |
Nombre d'Installations | 221 |
Version Actuelle | 3.0.1 |
Dernière Mise à Jour | 2015-09-20 |
Date de Publication | 2015-09-20 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Jeroen Visser |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/jeroenvisser101/git-flow-on-github/issues |
Langues Prises en Charge | 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" ] } ] } |