We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99245f9 commit bfb5563Copy full SHA for bfb5563
copier.yaml
@@ -33,7 +33,13 @@ _tasks:
33
rm src/{{package_name}}/cli.py tests/test_cli.py
34
{% endif %}
35
# Git VCS
36
- - git init && git add . && git commit --message "Initial commit"
+ - >-
37
+ if [ -e .git ]
38
+ then
39
+ git add . && git commit --message "Template Update" --no-verify
40
+ else
41
+ git init && git add . && git commit --message "Initial commit"
42
+ fi
43
- pre-commit install
44
# Create virtualenv and install
45
- python3 -m venv venv
0 commit comments