diff --git a/hooks/post_gen_project.py b/hooks/post_gen_project.py index c2e94cf..9aae08c 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py @@ -20,9 +20,9 @@ subprocess.call(["poetry", "lock"]) subprocess.call(["git", "init"]) subprocess.call(["git", "checkout", "-b", "main"]) subprocess.call(["git", "add", "*"]) -subprocess.call(["git", "commit", "-m", "Initial commit"]) subprocess.call(["git", "config", "user.name", "{{ cookiecutter.git_user }}"]) subprocess.call(["git", "config", "user.email", "{{ cookiecutter.email }}"]) +subprocess.call(["git", "commit", "-m", "Initial commit"]) # subprocess.call(["python", "-m", "venv", "venv"])