()
| 4894 | } |
| 4895 | |
| 4896 | func (r remoteBranch) fullRef() string { |
| 4897 | return fmt.Sprintf("%s/%s", r.Remote, r.Name) |
| 4898 | } |
| 4899 | |
| 4900 | func listRemoteBranches() ([]remoteBranch, error) { |
| 4901 | cmd := exec.Command("git", "for-each-ref", "--format=%(refname:short)", "refs/remotes") |
no outgoing calls
no test coverage detected