String featureLabel = getFeatureFinishName(ctx, flow);
String prefixedBranchName = flow.getFeatureBranchPrefix() + featureLabel;
// make sure we are on specific feature branch
flow.git().checkout().setName(prefixedBranchName).call();
//make sure we're not behind remote
if(GitHelper.remoteBranchExists(flow.git(), prefixedBranchName, reporter))
{
if(GitHelper.localBranchBehindRemote(flow.git(),prefixedBranchName,reporter))