Added method Repository.Committers() to fetch the committers list in a git repo using git shortlog -sne {rev} command. The information returned for each committer consists of: name, email, # of commits in the specified branch/revision.
This method is only implemented for gitcmd; a mercurial implementation is pending.
Added method Repository.Committers() to fetch the committers list in a git repo using
git shortlog -sne {rev}
command. The information returned for each committer consists of: name, email, # of commits in the specified branch/revision.This method is only implemented for
gitcmd
; a mercurial implementation is pending.