Versions in this module Expand all Collapse all v0 v0.1.0 Aug 27, 2018 Changes in this version + type Branch struct + Name *string + type Git struct + func (git Git) CheckoutAndPull(branchName string) + func (git Git) CurrentBranch() string + func (git Git) DeleteLocalBranch(branchName string) + func (git Git) DeleteRemoteBranch(branchName string) + func (git Git) InitBranch(issueNum int, branchName string) + func (git Git) IsRemoteBranch(branchName string) bool + func (git Git) Pull() + func (git Git) Repo() Repo + type Repo struct + Name string + Owner string + type VersionControlClient interface + CheckoutAndPull func(string) + CurrentBranch func() string + DeleteLocalBranch func(string) + DeleteRemoteBranch func(string) + InitBranch func(int, string) + IsRemoteBranch func(string) bool + Pull func() + Repo func() Repo + func GetClient() VersionControlClient