SYNOPSIS

git nav-downstream

DESCRIPTION

git-nav-downstream takes the current branch and discovers all branches downstream of it. If there is only one branch downstream of the current branch, the command will check that out. If there's more than one downstream branch, the command will prompt you with a selection of the branches.

EXAMPLE

$ git map-branches
origin/master *​
  cool_feature
    subfeature
  frozen_changes
  master
{NO UPSTREAM}
  bogus_noparent
$ git nav-downstream

Please select a downstream branch
  0. cool_feature
  1. frozen_changes
  2. master
Selection (0-2)[0]: 0
$ git map-branches
origin/master
  cool_feature *​
    subfeature
  frozen_changes
  master
{NO UPSTREAM}
  bogus_noparent

SEE ALSO

CHROMIUM DEPOT_TOOLS

Part of the chromium depot_tools(1) suite. These tools are meant to assist with the development of chromium and related projects. Download the tools from here.