diff --git a/lib/GitPlanbox/Status.php b/lib/GitPlanbox/Status.php index ad04e10..5b170d9 100644 --- a/lib/GitPlanbox/Status.php +++ b/lib/GitPlanbox/Status.php @@ -58,7 +58,7 @@ public function run($arguments, CLImaxController $cliController) $info['message'] = $commitMessage; // Find out which git branches contain this sha - $command = "git branch --contains {$sha} 2>&1"; + $command = "git branch -a --contains {$sha} 2>&1"; $output = ''; exec($command, $output, $returnCode); if ($returnCode === 0) diff --git a/pearfarm.spec b/pearfarm.spec index 295691d..7ab3738 100644 --- a/pearfarm.spec +++ b/pearfarm.spec @@ -6,11 +6,11 @@ $spec = Pearfarm_PackageSpec::create(array(Pearfarm_PackageSpec::OPT_BASEDIR => ->setSummary('A git subcommand for the Planbox project management tool.') ->setDescription('A command that allows you to integrate Planbox with the git command line.') ->setReleaseStability('alpha') - ->setReleaseVersion('0.0.17') - ->setApiVersion('0.0.17') + ->setReleaseVersion('0.0.18') + ->setApiVersion('0.0.18') ->setApiStability('alpha') ->setLicense(Pearfarm_PackageSpec::LICENSE_MIT) - ->setNotes('Allow pausing, finishing, or ignoring in-progress tasks when starting a new task.') + ->setNotes('Include remote branches in git-planbox status list of branches containing story') ->addMaintainer('lead', 'Jason Ardell', 'ardell', 'ardell@gmail.com') ->addGitFiles() ->addExecutable('git-planbox')