コード例 #1
0
ファイル: work.go プロジェクト: perrito666/got
// 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)
}
コード例 #2
0
ファイル: work.go プロジェクト: perrito666/got
// 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)
}