@@ -2435,57 +2435,57 @@ export class GitProviderService implements Disposable {
2435
2435
return proxy ;
2436
2436
}
2437
2437
2438
- @log ( )
2438
+ @log ( { singleLine : true } )
2439
2439
branches ( repoPath : string | Uri ) : GitSubProviderForRepo < GitBranchesSubProvider > {
2440
2440
return this . getSubProviderProxy ( repoPath , 'branches' ) ;
2441
2441
}
2442
2442
2443
- @log ( )
2443
+ @log ( { singleLine : true } )
2444
2444
commits ( repoPath : string | Uri ) : GitSubProviderForRepo < GitCommitsSubProvider > {
2445
2445
return this . getSubProviderProxy ( repoPath , 'commits' ) ;
2446
2446
}
2447
2447
2448
- @log ( )
2448
+ @log ( { singleLine : true } )
2449
2449
contributors ( repoPath : string | Uri ) : GitSubProviderForRepo < GitContributorsSubProvider > {
2450
2450
return this . getSubProviderProxy ( repoPath , 'contributors' ) ;
2451
2451
}
2452
2452
2453
- @log ( )
2453
+ @log ( { singleLine : true } )
2454
2454
graph ( repoPath : string | Uri ) : GitSubProviderForRepo < GitGraphSubProvider > {
2455
2455
return this . getSubProviderProxy ( repoPath , 'graph' ) ;
2456
2456
}
2457
2457
2458
- @log ( )
2458
+ @log ( { singleLine : true } )
2459
2459
patch ( repoPath : string | Uri ) : GitSubProviderForRepo < GitPatchSubProvider > | undefined {
2460
2460
return this . getSubProviderProxy ( repoPath , 'patch' ) ;
2461
2461
}
2462
2462
2463
- @log ( )
2463
+ @log ( { singleLine : true } )
2464
2464
remotes ( repoPath : string | Uri ) : GitSubProviderForRepo < GitRemotesSubProvider > {
2465
2465
return this . getSubProviderProxy ( repoPath , 'remotes' ) ;
2466
2466
}
2467
2467
2468
- @log ( )
2468
+ @log ( { singleLine : true } )
2469
2469
staging ( repoPath : string | Uri ) : GitSubProviderForRepo < GitStagingSubProvider > | undefined {
2470
2470
return this . getSubProviderProxy ( repoPath , 'staging' ) ;
2471
2471
}
2472
2472
2473
- @log ( )
2473
+ @log ( { singleLine : true } )
2474
2474
stash ( repoPath : string | Uri ) : GitSubProviderForRepo < GitStashSubProvider > | undefined {
2475
2475
return this . getSubProviderProxy ( repoPath , 'stash' ) ;
2476
2476
}
2477
2477
2478
- @log ( )
2478
+ @log ( { singleLine : true } )
2479
2479
status ( repoPath : string | Uri ) : GitSubProviderForRepo < GitStatusSubProvider > {
2480
2480
return this . getSubProviderProxy ( repoPath , 'status' ) ;
2481
2481
}
2482
2482
2483
- @log ( )
2483
+ @log ( { singleLine : true } )
2484
2484
tags ( repoPath : string | Uri ) : GitSubProviderForRepo < GitTagsSubProvider > {
2485
2485
return this . getSubProviderProxy ( repoPath , 'tags' ) ;
2486
2486
}
2487
2487
2488
- @log ( )
2488
+ @log ( { singleLine : true } )
2489
2489
worktrees ( repoPath : string | Uri ) : GitSubProviderForRepo < GitWorktreesSubProvider > | undefined {
2490
2490
return this . getSubProviderProxy ( repoPath , 'worktrees' ) ;
2491
2491
}
0 commit comments