[Solved]-How to tell cookiecutter to download a stable version of cookiecutter-django?

16👍

According to cookiecutter docs, You can choose to checkout specific branch, tags and commit with CLI argument --checkout or -c

Something like this command should work:

$ cookiecutter https://github.com/pydanny/cookiecutter-django.git --checkout 1.8.7
👤v1k45

Leave a comment