File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/env/node/git/sub-providers Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -344,7 +344,7 @@ export class CommitsGitSubProvider implements GitCommitsSubProvider {
344344 ] ;
345345
346346 if ( options ?. status !== false ) {
347- args . push ( '--name-status' , '--full-history' ) ;
347+ args . push ( '--name-status' ) ;
348348 }
349349 if ( options ?. all ) {
350350 args . push ( '--all' ) ;
@@ -487,7 +487,7 @@ export class CommitsGitSubProvider implements GitCommitsSubProvider {
487487
488488 try {
489489 const parser = createLogParserSingle ( '%H' ) ;
490- const args = [ ...parser . arguments , '--full-history' ] ;
490+ const args = [ ...parser . arguments ] ;
491491
492492 const ordering = options ?. ordering ?? configuration . get ( 'advanced.commitOrdering' ) ;
493493 if ( ordering ) {
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ export class ContributorsGitSubProvider implements GitContributorsSubProvider {
5252 const currentUser = await this . provider . config . getCurrentUser ( repoPath ) ;
5353 const parser = getContributorsParser ( options ?. stats ) ;
5454
55- const args = [ ...parser . arguments , '--full-history' , '-- use-mailmap'] ;
55+ const args = [ ...parser . arguments , '--use-mailmap' ] ;
5656
5757 const merges = options ?. merges ?? true ;
5858 if ( merges ) {
You can’t perform that action at this time.
0 commit comments