Skip to content

Commit

Permalink
move .mailmap to docs and update README
Browse files Browse the repository at this point in the history
  • Loading branch information
majetideepak committed Nov 24, 2024
1 parent 1679d9c commit baa3fdd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
File renamed without changes.
12 changes: 10 additions & 2 deletions velox/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,19 @@ The goal of the monthly update is for Velox users to understand the latest
improvements and changes to Velox.
This report is generated manually with the help of the following commands and template.

Command to get the list of contributors and their contribution count in a specific month.
Contributor affiliations are stored in `velox/docs/.mailmap`. This is used
to improve the contributor stats accuracy as contributor email addresses
aren't always consistent. New contributors must add to this file.
To get the list of contributors in a specific month say June-2024, from the Velox root directory
execute the following commands:
```
cp velox/docs/.mailmap .
git shortlog -se --since='June 1 2024' --until='June 30 2024'
rm .mailmap
```
Command to get the list of contributions in a specific month.

To get the list of contributions in a specific month, from the Velox root directory
execute the following command:
```
git log --since='June 1 2024' --until='June 30 2024' --pretty=format:"%h%x09%an%x09%ad%x09%s"
```
Expand Down

0 comments on commit baa3fdd

Please sign in to comment.