"AT": "MR author date, UNIX timestamp",
"AI": "MR author date, ISO 8601-like format",
"AD": "MR author date",
+ "m": "commit MR",
"h": "commit sha",
- "an": "author name",
- "ae": "author email",
- "at": "author date, UNIX timestamp",
- "ai": "author date, ISO 8601-like format",
- "ad": "author date",
+ "s": "commit subject",
+ "an": "commit author name",
+ "ae": "commit author email",
+ "at": "commit author date, UNIX timestamp",
+ "ai": "commit author date, ISO 8601-like format",
+ "ad": "commit author date",
}
if args.tags:
- tset = {"M", "h"}
+ tset = dict()
for commits in tags.values():
for tags in commits.values():
for tag in tags:
if not mrtags:
continue
- mrtags["M"] = {("", mr)}
-
printt(args.mfmt, mrtags)
if args.commits:
ctags = mrlib.get_commit_tags(tags, mr, commit)
if not ctags:
continue
- ctags["M"] = {("", mr)}
- ctags["h"] = {("", commit)}
printt(args.cfmt, ctags)