summaryrefslogtreecommitdiffstats
path: root/g2h/git.py
diff options
context:
space:
mode:
authorChristoph Schlosser <christoph@linux.com>2025-08-24 14:08:47 +0200
committerChristoph Schlosser <christoph@linux.com>2025-08-24 14:08:47 +0200
commit49fb19170a74accf51aa13ef0600a0d15f707737 (patch)
treea0a66e919e031638129ab9b128eb74c12e376fe7 /g2h/git.py
parent782a350e1f56292176ac8471195c889e47b2b841 (diff)
downloadgit2hugo-49fb19170a74accf51aa13ef0600a0d15f707737.tar.gz
g2h: Add log page
Diffstat (limited to 'g2h/git.py')
-rw-r--r--g2h/git.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/g2h/git.py b/g2h/git.py
index 9f3bba8..f3f4809 100644
--- a/g2h/git.py
+++ b/g2h/git.py
@@ -7,11 +7,11 @@ class Git:
except git.InvalidGitRepositoryError:
raise ValueError(f"Invalid git repository at {repo_path}")
- def get_all_commits(self):
- return list(self.repo.iter_commits())
-
def get_branches(self):
return sorted(self.repo.branches, key=lambda b: b.commit.committed_date, reverse=True)
+ def get_commits(self):
+ return list(self.repo.iter_commits())
+
def get_tags(self):
return sorted(self.repo.tags, key=lambda b: b.commit.committed_date, reverse=True)