Skip to content

Commit

Permalink
feat(plugin-git): improve contributors sorting (#309)
Browse files Browse the repository at this point in the history
  • Loading branch information
pengzhanbo authored Dec 17, 2024
1 parent dc166f3 commit 4fdde2c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const getRawContributors = (
): GitContributor[] => {
const contributors = new Map<string, GitContributor>()

for (const commit of commits) {
for (const commit of commits.reverse()) {
const authors = [
{ name: commit.author, email: commit.email },
...commit.coAuthors,
Expand Down

0 comments on commit 4fdde2c

Please sign in to comment.