FAQ === 1. How do I generate statistics of a non-master branch? Use the ``-c commit_end=devel`` parameter. 2. I have files in my git repository that I would like to exclude from the statistics. How do I do that? At the moment, the only way is to use `git-filter-branch(1) `_ to create a temporary repository and generate the statistics from that. 3. How do I merge author information when the same author has made commits using different names or emails? GitStats automatically merges authors who share the same email address, so commits made under different display names (e.g. ``Xianpeng Shen`` vs ``Xianpeng``) are unified under the most recently used name with no extra configuration needed. For cases where the same person has used *different* email addresses, use Git's ``.mailmap`` feature to map them to a single canonical identity, as described in the `gitmailmap `_ documentation.