Skip to content

Instantly share code, notes, and snippets.

@dzc34
Last active January 4, 2016 21:12
Show Gist options
  • Save dzc34/953334b1ae4893d681a9 to your computer and use it in GitHub Desktop.
Save dzc34/953334b1ae4893d681a9 to your computer and use it in GitHub Desktop.
Contributeurs par nombre de commits (sans les commits de merge)
# Contributeurs par nombre de commits (sans les commits de merge)
git shortlog -s -n --no-merges
git shortlog --summary --numbered --no-merges
# Contributeurs (avec mail) par nombre de commits (sans les commits de merge)
git shortlog -s -n --no-merges -e
git shortlog -s -n --no-merges --email
# Contributeurs par nombre de commits (sans les commits de merge)
# pour une branche "develop" ou un tag "v4.0.0"
git shortlog develop -s -n --no-merges
git shortlog v4.0.0 -s -n --no-merges
@dzc34
Copy link
Author

dzc34 commented Jan 4, 2016

file .mailmap

If the file .mailmap exists at the toplevel of the repository, or at the location pointed to by the mailmap.file configuration option, it is used # to map author and committer names and email addresses to canonical real names and email addresses.

Doc http://schacon.github.io/git/git-shortlog.html

@dzc34
Copy link
Author

dzc34 commented Jan 4, 2016

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment