diff --git a/{{cookiecutter.project_slug}}/git_create_repo.sh b/{{cookiecutter.project_slug}}/git_create_repo.sh new file mode 100644 index 000000000..7cda88ce1 --- /dev/null +++ b/{{cookiecutter.project_slug}}/git_create_repo.sh @@ -0,0 +1,5 @@ +git init +git add . +git commit -m "first {{cookiecutter.project_slug}} commit" +git remote add origin git@bitbucket.org:myvault/{{cookiecutter.project_slug}}.git +git push -u origin master