| Vincent Driessen | 9283eae | 2012-01-02 10:46:33 +0100 | [diff] [blame] | 1 | #!/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 | # | ||||
| 11 | NAME=$1 | ||||
| 12 | ORIGIN=$2 | ||||
| 13 | BRANCH=$3 | ||||
| 14 | BASE=$4 | ||||
| 15 | |||||
| 16 | # Implement your script here. | ||||
| 17 | # To terminate the git-flow action, return a non-zero exit code. | ||||
| 18 | exit 0 | ||||