Fetch retrieve updates from a remote This does not change the local bugs state
(repo repository.Repo, remote string)
| 10 | // Fetch retrieve updates from a remote |
| 11 | // This does not change the local bugs state |
| 12 | func Fetch(repo repository.Repo, remote string) (string, error) { |
| 13 | return dag.Fetch(def, repo, remote) |
| 14 | } |
| 15 | |
| 16 | // Push update a remote with the local changes |
| 17 | func Push(repo repository.Repo, remote string) (string, error) { |