Skip to content

Commit

Permalink
Include remote branches in git-planbox status list of branches contai…
Browse files Browse the repository at this point in the history
…ning story.
  • Loading branch information
ardell committed Feb 10, 2012
1 parent 74f2a7a commit f05d75a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion lib/GitPlanbox/Status.php
Expand Up @@ -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)
Expand Down
6 changes: 3 additions & 3 deletions pearfarm.spec
Expand Up @@ -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')
Expand Down

0 comments on commit f05d75a

Please sign in to comment.