]> OzVa Git service - blog/commitdiff
Git not owning repo fix
authorMax Value <greenwoodw50@gmail.com>
Tue, 17 Dec 2024 11:38:53 +0000 (11:38 +0000)
committerMax Value <greenwoodw50@gmail.com>
Tue, 17 Dec 2024 11:38:53 +0000 (11:38 +0000)
blog.py

diff --git a/blog.py b/blog.py
index f8bcf570930cde57d1b6cd1e398e086ad823d910..7a2d6cdc99af6d2dfa78f346d968ae472710b2d6 100755 (executable)
--- a/blog.py
+++ b/blog.py
@@ -15,6 +15,9 @@ md = markdown.Markdown(extensions = ['meta', 'tables', 'footnotes', TocExtension
 
 blog_path = environ["BLOG_PATH"]
 
+repo = Repo.init(blog_path)
+repo.config_writer().set_value("safe", "directory", blog_path).release()
+
 class Page():
        def __init__(
                self,
@@ -94,7 +97,6 @@ def get_metadata(file_name: str):
        return title, abstract, keywords
 
 def get_history(n):
-       repo = Repo.init(blog_path)
        commits = list(repo.iter_commits("main", max_count=n))
        commits_string = ""
        for c in commits: