(self,
repo_dir: str,
tag_name: str,
message: str,
ref: str = MASTER_MODEL_BRANCH)
| 188 | # Tags |
| 189 | # ------------------------------------------------------------------ |
| 190 | def tag(self, |
| 191 | repo_dir: str, |
| 192 | tag_name: str, |
| 193 | message: str, |
| 194 | ref: str = MASTER_MODEL_BRANCH): |
| 195 | return self._run_git_command('-C', repo_dir, 'tag', tag_name, '-m', |
| 196 | f'"{message}"', ref) |
| 197 | |
| 198 | def push_tag(self, repo_dir: str, tag_name: str): |
| 199 | return self._run_git_command('-C', repo_dir, 'push', 'origin', |
nothing calls this directly
no test coverage detected