{% extends "layout.html" %} {% import "utils.html" as utils with context %} {% block title %} Preparing patchset for {{repo.owner.canonical_name}}/{{repo.name}} - {{cfg("sr.ht", "site-name")}} git {% endblock %} {% block body %}
{{csrf_token()}} Finalize the patchset You can prune too-recent commits now. You'll be able to review the final patchset before it's sent in the next step.
{% for c in commits %} {% endfor %} {{valid.summary()}}
Add a cover letter The cover letter is used to describe the patchset as a whole. Add any comments useful for the reviewers of this patch. It will be wrapped to 72 columns.
{{valid.summary("cover_letter_subject")}}
{{valid.summary("cover_letter")}}
{% for diff in diffs %} {% set c = commits[loop.index-1] %}

{{ trim_commit(c.message) }}

{{ utils.commit_event(repo, c, full_body=True, diff=diff) }}
Add commentary Add details or caveats useful for reviewing or testing this commit. This won't appear in the log once the patch is applied. It will be wrapped to 72 columns.
{{utils.commit_diff(repo, c, diff, anchor=c.oid.hex + "-", target_blank=True)}}
{% endfor %}
{% endblock %} {% block repohead %} {% endblock %}