(upstream, name string)
| 199 | } |
| 200 | |
| 201 | func (self *Shell) AssertRemoteTagNotFound(upstream, name string) *Shell { |
| 202 | return self.RunCommandExpectError([]string{"git", "ls-remote", "--exit-code", upstream, fmt.Sprintf("refs/tags/%s", name)}) |
| 203 | } |
| 204 | |
| 205 | func (self *Shell) CreateLightweightTag(name string, ref string) *Shell { |
| 206 | return self.RunCommand([]string{"git", "tag", name, ref}) |
no test coverage detected