Statistics
In the month of {{ pageTitle }}…
{% if statistic.contributions.commits > 0 and statistic.contributions.authors > 0 %}
-
{{ statistic.contributions.commits }}
{{ pluralize('commit', 'commits', statistic.contributions.commits) }}
{{ pluralize('was', 'were', statistic.contributions.commits) }} made by
{{ statistic.contributions.authors }}
{{ pluralize('contributor', 'contributors', statistic.contributions.authors) }}.
{% endif %}
{% if statistic.lines.added > 0 %}
-
{{ statistic.lines.added }}
{{ pluralize('line', 'lines', statistic.lines.added) }} of code
{{ pluralize('was', 'were', statistic.lines.added) }} added.
{% endif %}
{% if statistic.lines.removed > 0 %}
-
{{ statistic.lines.removed }}
{{ pluralize('line', 'lines', statistic.lines.removed) }} of code
{{ pluralize('was', 'were', statistic.lines.removed) }} removed.
{% endif %}
{% if statistic.issues.opened > 0 %}
-
{{ statistic.issues.opened }}
{{ pluralize('issue', 'issues', statistic.issues.opened) }}
{{ pluralize('was', 'were', statistic.issues.opened) }} opened.
{% endif %}
{% if statistic.issues.closed > 0 %}
-
{{ statistic.issues.closed }}
{{ pluralize('issue', 'issues', statistic.issues.closed) }}
{{ pluralize('was', 'were', statistic.issues.closed) }} closed.
{% endif %}
{% if statistic.mergeRequests.opened > 0 %}
-
{{ statistic.mergeRequests.opened }}
{{ pluralize('issue', 'issues', statistic.mergeRequests.opened) }}
{{ pluralize('was', 'were', statistic.mergeRequests.opened) }} opened.
{% endif %}
{% if statistic.mergeRequests.closed > 0 %}
-
{{ statistic.mergeRequests.closed }}
{{ pluralize('issue', 'issues', statistic.mergeRequests.closed) }}
{{ pluralize('was', 'were', statistic.mergeRequests.closed) }} closed/merged.
{% endif %}