remoteFeatureBranches.add(item);
}
}
if (remoteBranches.size()>0){
GitflowBranchChooseDialog branchChoose = new GitflowBranchChooseDialog(myProject,remoteFeatureBranches);
branchChoose.show();
if (branchChoose.isOK()){
String branchName= branchChoose.getSelectedBranchName();
final String featureName= GitflowConfigUtil.getFeatureNameFromBranch(myProject, branchName);
final GitRemote remote=branchUtil.getRemoteByBranch(branchName);
final GitflowErrorsListener errorLineHandler = new GitflowErrorsListener(myProject);
new Task.Backgroundable(myProject,"Tracking feature "+featureName,false){