()
| 1271 | } |
| 1272 | |
| 1273 | async getDefaultBranch() { |
| 1274 | const result: Endpoints['GET /repos/{owner}/{repo}/branches/{branch}']['response']['data'] = |
| 1275 | await this.request(`${this.originRepoURL}/branches/${encodeURIComponent(this.branch)}`); |
| 1276 | return result; |
| 1277 | } |
| 1278 | |
| 1279 | async backupBranch(branchName: string) { |
| 1280 | try { |
no test coverage detected