(l *tasklog.Logger, remotes []string)
| 290 | } |
| 291 | |
| 292 | func fetchRemoteRefs(l *tasklog.Logger, remotes []string) error { |
| 293 | w := l.Waiter(tr.Tr.Get("Fetching remote refs")) |
| 294 | defer w.Complete() |
| 295 | |
| 296 | return git.Fetch(remotes...) |
| 297 | } |
| 298 | |
| 299 | // formatRefName returns the fully-qualified name for the given Git reference |
| 300 | // "ref". |
no test coverage detected