File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -182,17 +182,17 @@ export class PullRequestGitHelper {
182182 try {
183183 const branchName = pullRequest . head . ref ;
184184 Logger . debug ( `No PR metadata found, trying to checkout local branch ${ branchName } ` , PullRequestGitHelper . ID ) ;
185-
185+
186186 // Check if a local branch with this name exists
187187 await repository . getBranch ( branchName ) ;
188-
188+
189189 // If we get here, the branch exists - checkout and associate with PR
190190 progress . report ( { message : vscode . l10n . t ( 'Checking out branch {0}' , branchName ) } ) ;
191191 await repository . checkout ( branchName ) ;
192-
192+
193193 // Associate the branch with the pull request for future reference
194194 await PullRequestGitHelper . associateBranchWithPullRequest ( repository , pullRequest , branchName ) ;
195-
195+
196196 return true ;
197197 } catch ( err ) {
198198 // No matching local branch found
You can’t perform that action at this time.
0 commit comments