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