blob: c30419b524f6821c69ec43a529a75f2c54c36187 [file] [log] [blame]
Vincent Driessen9283eae2012-01-02 10:46:33 +01001#!/bin/sh
2#
3# Ran before git flow feature track
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#
10NAME=$1
11ORIGIN=$2
12BRANCH=$3
13
14# Implement your script here.
15# To terminate the git-flow action, return a non-zero exit code.
16exit 0