(self, branch)
| 3722 | and ('keepRepoPath' in d['options'])) |
| 3723 | |
| 3724 | def gitRefForBranch(self, branch): |
| 3725 | if branch == "main": |
| 3726 | return self.refPrefix + "master" |
| 3727 | |
| 3728 | if len(branch) <= 0: |
| 3729 | return branch |
| 3730 | |
| 3731 | return self.refPrefix + self.projectName + branch |
| 3732 | |
| 3733 | def gitCommitByP4Change(self, ref, change): |
| 3734 | if self.verbose: |
no outgoing calls
no test coverage detected