File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -3402,12 +3402,13 @@ export class CommandCenter {
3402
3402
3403
3403
if ( ! name ) {
3404
3404
const getBranchPicks = async ( ) => {
3405
- const refs = await repository . getRefs ( {
3406
- pattern : 'refs/heads' ,
3407
- includeCommitDetails : showRefDetails
3408
- } ) ;
3409
- const processors = [ new RefProcessor ( RefType . Head , BranchItem ) ] ;
3410
- const itemsProcessor = new RefItemsProcessor ( repository , processors ) ;
3405
+ const refs = await repository . getRefs ( { includeCommitDetails : showRefDetails } ) ;
3406
+ const itemsProcessor = new RefItemsProcessor ( repository , [
3407
+ new RefProcessor ( RefType . Head ) ,
3408
+ new RefProcessor ( RefType . RemoteHead ) ,
3409
+ new RefProcessor ( RefType . Tag )
3410
+ ] ) ;
3411
+
3411
3412
return itemsProcessor . processRefs ( refs ) ;
3412
3413
} ;
3413
3414
You can’t perform that action at this time.
0 commit comments