We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0652bbe commit 65da5beCopy full SHA for 65da5be
src/info/repo.rs
@@ -90,7 +90,6 @@ impl<'a> Repo<'a> {
90
.object()
91
.expect("commit is still present/comes from cache")
92
.into_commit();
93
- num_commits += 1;
94
{
95
let commit = commit.decode()?;
96
if no_merges && commit.parents().take(2).count() > 1 {
@@ -100,6 +99,7 @@ impl<'a> Repo<'a> {
100
99
if is_bot(commit.author, bot_regex_pattern) {
101
continue;
102
}
+ num_commits += 1;
103
104
let author_nbr_of_commits = author_to_number_of_commits
105
.entry(Sig::from(mailmap.resolve(commit.author)))
0 commit comments