From 49fb19170a74accf51aa13ef0600a0d15f707737 Mon Sep 17 00:00:00 2001 From: Christoph Schlosser Date: Sun, 24 Aug 2025 14:08:47 +0200 Subject: g2h: Add log page --- g2h/cli.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'g2h/cli.py') diff --git a/g2h/cli.py b/g2h/cli.py index 301203c..fc14582 100644 --- a/g2h/cli.py +++ b/g2h/cli.py @@ -20,12 +20,14 @@ def main(): git = Git(args.repo_path) branches = git.get_branches() + commits = git.get_commits() # TODO: Fix this for repo_path=(.|~) project_name = args.name if args.name is not None else os.path.basename(args.repo_path) tags = git.get_tags() gen = Generator(args.out_dir) gen.render_overview(project_name, branches, tags) + gen.render_log(project_name, commits, branches, tags) if __name__ == '__main__': main() -- cgit v1.2.3