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.
1 parent cc697a6 commit cf90b29Copy full SHA for cf90b29
extra/make-changelog.py
@@ -11,6 +11,10 @@
11
repo = git.Repo(".")
12
changelog = defaultdict(list) # type: Dict[str, List[str]]
13
14
+if len(sys.argv) != 2:
15
+ print("Usage: %s SINCE-TAG" % __file__, file=sys.stderr)
16
+ sys.exit(2)
17
+
18
for id in repo.iter_commits("%s..HEAD" % sys.argv[1]):
19
commit = repo.commit(id)
20
if not commit.summary.startswith("Merge pull request "):
0 commit comments