()
| 73 | } |
| 74 | |
| 75 | func (r GitRepository) GetLastRemoteCommitHash() (hash string, err error) { |
| 76 | return r.Client.GetLastRemoteCommitHash(r) |
| 77 | } |
| 78 | |
| 79 | func (r GitRepository) GetRemoteBranches() ([]string, error) { |
| 80 | return r.Client.GetRemoteBranches(r) |
nothing calls this directly
no test coverage detected