Ejemplo n.º 1
0
// PickBug will prompt the user which bug branch to
// checkout.
func (w *Command) PickBug() (string, error) {
	return util.Picker(util.FixType, w.NewGit, w.UI)
}
Ejemplo n.º 2
0
// PickFeature will prompt the user which bug branch to
// checkout.
func (w *Command) PickFeature() (string, error) {
	return util.Picker(util.FeatureType, w.NewGit, w.UI)
}