We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3c1106a + be6697f commit ff9894aCopy full SHA for ff9894a
script/commit_message.py
@@ -18,7 +18,7 @@ def main():
18
tag = subprocess.check_output(cmd_tag,
19
shell=True).decode("utf-8").split('\n')[0]
20
21
- cmd = "git log --pretty=format:'%s' {}..master".format(tag)
+ cmd = "git log --pretty=format:'%s' {}..HEAD".format(tag)
22
commits = subprocess.check_output(cmd, shell=True)
23
commits = commits.decode("utf-8").split('\n')
24
for commit in commits:
0 commit comments