2194 repodir = self.findRepoRoot(dname) |
2194 repodir = self.findRepoRoot(dname) |
2195 if not repodir: |
2195 if not repodir: |
2196 return False, False |
2196 return False, False |
2197 |
2197 |
2198 dlg = GitBranchDialog( |
2198 dlg = GitBranchDialog( |
2199 self.gitGetBranchesList(repodir, allBranches=True), |
2199 self.gitGetBranchesList(repodir, withMaster=True, allBranches=True), |
2200 revision, |
2200 revision, |
2201 branchName, |
2201 branchName, |
2202 branchOp, |
2202 branchOp, |
2203 ) |
2203 ) |
2204 if dlg.exec() == QDialog.DialogCode.Accepted: |
2204 if dlg.exec() == QDialog.DialogCode.Accepted: |