Switches to an existing branch.
(branchName: string)
| 66 | |
| 67 | /** Switches to an existing branch. */ |
| 68 | switchToBranch(branchName: string): this { |
| 69 | runGitInTmpDir(['checkout', branchName]); |
| 70 | return this; |
| 71 | } |
| 72 | |
| 73 | /** Creates a new tag for the current repo `HEAD`. */ |
| 74 | createTagForHead(tagName: string): this { |
no test coverage detected