From a6a963d05f7498a73ef967e5ea41c699e5fe5276 Mon Sep 17 00:00:00 2001 From: Matthew Franglen Date: Mon, 5 Feb 2018 19:49:18 +0000 Subject: [PATCH 1/5] Add antigen compatible plugin description This adds antigen support for ZSH. See https://github.com/zsh-users/antigen for more details. This allows a user to start using this library using the command: ```bash antigen bundle matthewfranglen/gitflow-avh ``` Which handles downloading the repository and adding the command to your path. --- gitflow-avh.plugin.zsh | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 gitflow-avh.plugin.zsh diff --git a/gitflow-avh.plugin.zsh b/gitflow-avh.plugin.zsh new file mode 100644 index 0000000..cc11850 --- /dev/null +++ b/gitflow-avh.plugin.zsh @@ -0,0 +1,23 @@ +# This allows the gitflow-avh commands to be installed in ZSH using antigen. +# Antigen is a bundle manager. It allows you to enhance the functionality of +# your zsh session by installing bundles and themes easily. + +# Antigen documentation: +# http://antigen.sharats.me/ +# https://github.com/zsh-users/antigen + +# Install gitflow-avh: +# antigen bundle petervanderdoes/gitflow-avh +# Bundles installed by antigen are available for use immediately. + +# Update gitflow-avh (and all other antigen bundles): +# antigen update + +# The antigen command will download the git repository to a folder and then +# execute an enabling script (this file). The complete process for loading the +# code is documented here: +# https://github.com/zsh-users/antigen#notes-on-writing-plugins + +# This specific script just adds the project folder to the PATH. This makes all +# commands available in git. +export PATH="${PATH}":`dirname "${0}"` From 109a55228e069f8c5462f130fe8685250b3045f5 Mon Sep 17 00:00:00 2001 From: Matthew Franglen Date: Mon, 5 Feb 2018 19:57:15 +0000 Subject: [PATCH 2/5] Suggest using master branch for stable release --- gitflow-avh.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitflow-avh.plugin.zsh b/gitflow-avh.plugin.zsh index cc11850..f979ae5 100644 --- a/gitflow-avh.plugin.zsh +++ b/gitflow-avh.plugin.zsh @@ -7,7 +7,7 @@ # https://github.com/zsh-users/antigen # Install gitflow-avh: -# antigen bundle petervanderdoes/gitflow-avh +# antigen bundle petervanderdoes/gitflow-avh --branch=master # Bundles installed by antigen are available for use immediately. # Update gitflow-avh (and all other antigen bundles): From 1f1b2ee76b2609c645c973dbb87aaee7271e027a Mon Sep 17 00:00:00 2001 From: ChrisjStone Date: Sun, 11 Jun 2023 18:50:13 -0600 Subject: [PATCH 3/5] fix(antigen): change installed repo change download soruce from petervanderdoes/gitflow-avh to Cj-Systems/gitflow-cjs. Also have antigen pull master branch for current stable release --- gitflow-avh.plugin.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gitflow-avh.plugin.zsh b/gitflow-avh.plugin.zsh index f979ae5..bd05f73 100644 --- a/gitflow-avh.plugin.zsh +++ b/gitflow-avh.plugin.zsh @@ -6,8 +6,8 @@ # http://antigen.sharats.me/ # https://github.com/zsh-users/antigen -# Install gitflow-avh: -# antigen bundle petervanderdoes/gitflow-avh --branch=master +# Install gitflow-avh with antigen: +# antigen bundle CJ-Systems/gitflow-cjs --branch=master # Bundles installed by antigen are available for use immediately. # Update gitflow-avh (and all other antigen bundles): From 5fa89e5495fa398d0fa1c4f693aaee8581213a97 Mon Sep 17 00:00:00 2001 From: ChrisjStone Date: Sun, 11 Jun 2023 19:00:40 -0600 Subject: [PATCH 4/5] Update of the contributers. --- AUTHORS | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/AUTHORS b/AUTHORS index 009ef62..35119a5 100644 --- a/AUTHORS +++ b/AUTHORS @@ -10,7 +10,9 @@ Peter van der Does Vincent Driessen Daniel Dehennin Benedikt Böhm +ChrisjStone Leonid Komarovsky +Chris Stone Felipe Talavera Randy Merrill Kevin Woo @@ -20,18 +22,20 @@ Fred Condo Alexandre Dutra Andreas Heiduk Ben Loveridge -ChrisjStone Florian Gamböck Gergely Nagy JP Toto +James Skemp Kiall Mac Innes Lorin Hochstein Luis Fernando Gomes +Matthew Franglen Olivier Mengué Oppodelldog Pokey Rule Silas Palmer Stefan Näwe +gpongelli Adam Gibbins Alexander Groß Alexander Norström @@ -39,7 +43,6 @@ Alexander Zeitler Brian St. Pierre Cararus Eugeniu Chad Walker -Chris Stone Craig Fowler Emre Berge Ergenekon Gene Pavlovsky @@ -80,7 +83,6 @@ Vedang Manerikar Zheeeng eddie cianci gmallard -gpongelli raybec From 52c290b3a30e32c859cbc392ae11e4cbcacb5e62 Mon Sep 17 00:00:00 2001 From: ChrisjStone Date: Sun, 11 Jun 2023 19:00:40 -0600 Subject: [PATCH 5/5] Version bump 1.12.5-dev.11 --- git-flow-version | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git-flow-version b/git-flow-version index 38e57cf..f25da3b 100644 --- a/git-flow-version +++ b/git-flow-version @@ -38,7 +38,7 @@ # -GITFLOW_VERSION=1.12.5-dev0 +GITFLOW_VERSION=1.12.5-dev.11 initialize() { # A function can not be empty. Comments count as empty.