Skip to content

Commit

Permalink
Merge pull request #122 from theohbrothers/enhancement/generate-revis…
Browse files Browse the repository at this point in the history
…e-function-get-repositorycommithistory-to-return-the-default-object-of-git-log-items

Enhancement (generate): Revise function `Get-RepositoryCommitHistory` to return the default object of git log items
  • Loading branch information
joeltimothyoh authored Jun 7, 2024
2 parents 5bd6972 + 032305b commit a5ecd3c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function Get-RepositoryCommitHistory {
if ($Merges) { '--merges' }
elseif ($NoMerges) { '--no-merges' }
)
$_commitHistory = git $gitArgs | Out-String
$_commitHistory = git $gitArgs
"Changelog:" | Write-Verbose
$_commitHistory | Write-Verbose
$_commitHistory
Expand Down

0 comments on commit a5ecd3c

Please sign in to comment.