示例#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)
}