Skip to content
Snippets Groups Projects
Commit cf08a1a8 authored by Sébastien Helleu's avatar Sébastien Helleu
Browse files

Fix commits by version (remove --all for git log)

parent b74a3ffa
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -298,7 +298,7 @@ class GitChart(object):
# v0.3.0 => 0.3.0
tag2 = re.sub('([^0-9]+)', ' ', tag).strip().replace(' ', '.')
commits[tag2] = len(
self._git_command(['git', 'log', '--all',
self._git_command(['git', 'log',
oldtag + '..' + tag if oldtag else tag,
'--pretty=oneline']))
oldtag = tag
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment