Automatically initialize git when finished.

PBR will refuse to work or allow users to run tests until there is a git
repository set up. It is easier to just do this automatically than have
to explain it in the docs.

Change-Id: Ied9ccab2665c4542e2ec2ee42174c3e15e166880
This commit is contained in:
Jamie Lennox 2014-09-04 14:55:18 +10:00
parent 506ed304a9
commit 543d0e81a5
2 changed files with 9 additions and 2 deletions

View File

@ -19,8 +19,10 @@ Generate a Python package project::
cookiecutter https://git.openstack.org/openstack-dev/cookiecutter.git
OpenStack projects require a working git repo for pbr to work, so you need to
init a repo and commit to it before doing anything else::
OpenStack projects require a working git repo for pbr to work, on newer
versions of cookiecutter (>= 0.7.0 released 2013-11-09) this inital commit will
be done automatically. Otherwise you will need to init a repo and commit to it
before doing anything else::
cd $repo_name
git init

5
hooks/post_gen_project.sh Executable file
View File

@ -0,0 +1,5 @@
#!/usr/bin/env sh
git init
git add .
git commit -a -m "Initial Cookiecutter Commit."