We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
create a patch file inside the django-project-repository:
$ git format-patch <base version of project> --stdout > project-template.patch $ sed -i 's/{{ project_name }}/<project_name>/g' project-template.patch $ sed -i 's/project_name/<project_name>/g' project-template.patch
change to your project and apply the patch:
$ git am <path to django-project-template>/project-template.patch
if the patch does not apply and you want to apply it manually do your changes and then run:
$ git add <changed files> $ git am --continue
if you do NOT want to apply the patch run:
$ git am --skip
Sorry, something went wrong.
and please take care of the commit messages especially if they do contain keywords parsed by github like referencing issues!
add the commit id and the project template version to the init file, might be usefull to track diffs
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: