(refs []string, watcher *fetchWatcher)
| 240 | } |
| 241 | |
| 242 | func fetchRefs(refs []string, watcher *fetchWatcher) bool { |
| 243 | pointers, err := pointersToFetchForRefs(refs) |
| 244 | if err != nil { |
| 245 | Panic(err, tr.Tr.Get("Could not scan for Git LFS files")) |
| 246 | } |
| 247 | return fetch(pointers, watcher) |
| 248 | } |
| 249 | |
| 250 | // Fetch all previous versions of objects from since to ref (not including final state at ref) |
| 251 | // So this will fetch all the '-' sides of the diff from since to ref |
no test coverage detected