func (r *GitHubRepo) CurrentBranch() (branch *Branch, err error) { head, err := git.Head() if err != nil { err = fmt.Errorf("Aborted: not currently on any branch.") return } branch = &Branch{head} return }
func (p *Project) LocalRepoWith(base, head string) *Repo { if base == "" { base = "master" } if head == "" { head, _ = git.Head() } return &Repo{base, head, p} }
func (p *Project) LocalRepoWith(base, head string) *Repo { if base == "" { base = "master" } if head == "" { headBranch, err := git.Head() utils.Check(err) head = headBranch.ShortName() } return &Repo{base, head, p} }
func transformPushArgs(args *Args) { refs := []string{} if args.ParamsSize() > 1 { refs = args.Params[1:] } remotes := strings.Split(args.FirstParam(), ",") args.ReplaceParam(0, remotes[0]) if len(refs) == 0 { head, err := git.Head() utils.Check(err) refs = []string{head.ShortName()} args.AppendParams(refs...) } for _, remote := range remotes[1:] { afterCmd := []string{"git", "push", remote} afterCmd = append(afterCmd, refs...) args.After(afterCmd...) } }