blob: 818418e7c6c89d49408ae04a8b2c3e38f7322bef [file] [log] [blame]
Vincent Driessen9283eae2012-01-02 10:46:33 +01001#!/bin/sh
2#
3# Ran before git flow feature start
4#
5# Positional arguments:
6# $1 The friendly name of the branch
7# $2 The origin remote
8# $3 The full branch name (including the feature prefix)
9# $4 The base from which this feature is started
10#
11NAME=$1
12ORIGIN=$2
13BRANCH=$3
14BASE=$4
15
16# Implement your script here.
17# To terminate the git-flow action, return a non-zero exit code.
18exit 0