Lines Matching defs:git
22 type git struct { struct
23 os string
24 vm string
25 dir string
36 func (git *git) Poll(repo, branch string) (*Commit, error) {
68 func (git *git) CheckoutBranch(repo, branch string) (*Commit, error) {
86 func (git *git) CheckoutCommit(repo, commit string) (*Commit, error) {
101 func (git *git) SwitchCommit(commit string) (*Commit, error) {
109 func (git *git) clone(repo, branch string) error {
122 func (git *git) initRepo() error {
138 func (git *git) HeadCommit() (*Commit, error) {
142 func (git *git) getCommit(commit string) (*Commit, error) {
191 func (git *git) ListRecentCommits(baseCommit string) ([]string, error) {
203 func (git *git) ExtractFixTagsFromCommits(baseCommit, email string) ([]FixCommit, error) {
283 …it) Bisect(bad, good string, trace io.Writer, pred func() (BisectResult, error)) (*Commit, error) {
331 func (git *git) PreviousReleaseTags(commit string) ([]string, error) {