]> git.phdru.name Git - cookiecutter.git/blobdiff - cookiecutter
Ignore coverage data and reports
[cookiecutter.git] / cookiecutter
index 936caffe3ad085e7109e55897dde04ee437e0a58..4f5ae0b918df8ce134a6168e345960057b258442 100755 (executable)
@@ -12,10 +12,13 @@ rm -rf "$HOME/tmp/$project_name" &&
 cp -ap project_template "$HOME/tmp/$project_name" &&
 
 cd "$HOME/tmp/$project_name" &&
-replace -i "template project" "$project_name" README.txt setup.py &&
-replace project "$project_name" docs/genapidocs mk-distr publish-docs setup.py &&
+mv project "$project_name" &&
+
+replace '{project}' "$project_name" .gitignore README.txt \
+   docs/genapidocs mk-distr publish-docs setup.py tox.ini &&
 
 sphinx-quickstart --project="$project_name" --author="Oleg Broytman" \
    -v0.0 -r0.0.1 --ext-autodoc --makefile --no-batchfile -q docs &&
 
-exec git init
+git init && git add . &&
+exec git commit --message "Initial commit - created the project"