From 0552aeeb4c22229366a72636d5928c9580834d6a Mon Sep 17 00:00:00 2001 From: Ethan Holz Date: Mon, 4 Mar 2024 10:33:17 -0600 Subject: [PATCH] fix: updated to add a tag message for the initial git tag --- hooks/post_gen_project.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/post_gen_project.py b/hooks/post_gen_project.py index 09e602a..ddb8f62 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py @@ -56,7 +56,7 @@ def git_init_and_tag(): version = invoke_shell("git tag", expected_error=True) # Tag if no tag exists if not version: - invoke_shell("git tag 0.0.0") + invoke_shell("git tag 0.0.0 -m \"Initial commit from MolSSI cookie cutter\"") else: print("\ngit repository detected. " "CookieCutter files have been created in {{ cookiecutter.repo_name }} directory.")