예제 #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)
}