提交代码

This section is addressed to the mergers and to anyone interested in knowing how code gets committed into Django. If you’re a community member who wants to contribute code to Django, look at 使用 Git 和 GitHub 工作 instead.

处理 pull 请求

因为Django现在是托管在GitHub上的,所以大多数补丁都是以 pull requests 的形式提供的。

When committing a pull request, make sure each individual commit matches the commit guidelines described below. Contributors are expected to provide the best pull requests possible. In practice mergers - who will likely be more familiar with the commit guidelines - may decide to bring a commit up to standard themselves.

You may want to have Jenkins or GitHub actions test the pull request with one of the pull request builders that doesn’t run automatically, such as Oracle or Selenium. See the CI wiki page for instructions.

如果你发现你经常检出 pull requests 到本地,这个 git alias 会很有帮助:

  1. [alias]
  2. pr = !sh -c \"git fetch upstream pull/${1}/head:pr/${1} && git checkout pr/${1}\"

将它添加到你的 ~/.gitconfig 文件中,并且把 upstream 改为 django/django 。然后你就可以通过运行 git pr #### 来检出对应的 pull request 了。

到了这个阶段,你可以着手于代码.使用”git rebase -i”和”git commit —ammend” 来确保你的提交准确无误. 一旦你准备好了:

Linux/MacOS     Windows

  1. $ # Pull in the latest changes from main.
  2. $ git checkout main
  3. $ git pull upstream main
  4. $ # Rebase the pull request on main.
  5. $ git checkout pr/####
  6. $ git rebase main
  7. $ git checkout main
  8. $ # Merge the work as "fast-forward" to main to avoid a merge commit.
  9. $ # (in practice, you can omit "--ff-only" since you just rebased)
  10. $ git merge --ff-only pr/XXXX
  11. $ # If you're not sure if you did things correctly, check that only the
  12. $ # changes you expect will be pushed to upstream.
  13. $ git push --dry-run upstream main
  14. $ # Push!
  15. $ git push upstream main
  16. $ # Delete the pull request branch.
  17. $ git branch -d pr/xxxx
  1. ...\> REM Pull in the latest changes from main.
  2. ...\> git checkout main
  3. ...\> git pull upstream main
  4. ...\> REM Rebase the pull request on main.
  5. ...\> git checkout pr/####
  6. ...\> git rebase main
  7. ...\> git checkout main
  8. ...\> REM Merge the work as "fast-forward" to main to avoid a merge commit.
  9. ...\> REM (in practice, you can omit "--ff-only" since you just rebased)
  10. ...\> git merge --ff-only pr/XXXX
  11. ...\> REM If you're not sure if you did things correctly, check that only the
  12. ...\> REM changes you expect will be pushed to upstream.
  13. ...\> git push --dry-run upstream main
  14. ...\> REM Push!
  15. ...\> git push upstream main
  16. ...\> REM Delete the pull request branch.
  17. ...\> git branch -d pr/xxxx

Force push to the branch after rebasing on main but before merging and pushing to upstream. This allows the commit hashes on main and the branch to match which automatically closes the pull request.

如果拉请求不需要合并为多个提交,则可以在网页上使用Github的“挤压和合并”按钮。根据需要编辑提交消息以符合:ref:`The guidelines<committing-guidelines>`并删除自动附加到消息第一行的请求编号。

当重写pull请求的提交历史时,目标是使Django的提交历史尽可能可用:

  • 如果补丁包含来回提交,则将其重写为一个。例如,如果提交添加了一些代码,第二个提交修复了第一次提交中引入的样式问题,那么这些提交应该在合并之前被压缩。
  • 通过逻辑分组对不同提交进行单独更改:如果在对文件进行其他更改的同时进行样式清理,则将更改分成两个不同的提交将使查看历史记录变得更容易。
  • 注意拉取请求中上游分支的合并。
  • 测试应该通过,文档应该在每次提交后构建。测试和文档都不应该发出警告。
  • 随意和小型的补丁通常最好在一次提交中完成。如果有意义,可以将中型到大型工作分成多个提交。

Practicality beats purity, so it is up to each merger to decide how much history mangling to do for a pull request. The main points are engaging the community, getting work done, and having a usable commit history.

提交指南

此外,在将代码提交到Django的Git存储库时,请遵循以下准则:

  • 永远不要通过强制推动来改变“django / django``分支的已发布历史。如果您绝对必须(出于安全原因),请先与团队讨论情况。

  • 对于任何根据您的判断“中到大”的变化,请在进行更改之前在django开发者邮件列表上提出。

    如果你对Django开发人员提出了一些建议,但没有人回应,请不要认为这意味着你的想法很棒,应该立即实施,因为没有人反对。每个人都没有足够的时间立即阅读邮件列表讨论,因此您可能需要等待几天才能得到答复。

  • 以过去时态写出详细的提交消息,而不是现在时。

    • 正确:”Fixed Unicode bug in RSS API.”
    • 错误:”Fixes Unicode bug in RSS API.”
    • 错误:”Fixing Unicode bug in RSS API.”

    提交消息最多应为72个字符。 应该有一个主题行,用空白行分隔,然后是72个字符行的段落。 限制很软。 对于主题行,越短越好。 在提交消息的主体中,更多细节优于更少:

    1. Fixed #18307 -- Added git workflow guidelines.
    2. Refactored the Django's documentation to remove mentions of SVN
    3. specific tasks. Added guidelines of how to use Git, GitHub, and
    4. how to use pull request together with Trac instead.

    可以在提交消息中添加对贡献者的感谢:“感谢A提供报告,B提供补丁,C提供审查。” 也推荐使用 git 的 Co-Authored-By _ 功能。

  • 对于提交到分支,请在提交消息前面加上分支名称。例如:“[1.4.x]Fixed XXXX——增加了对思维阅读的支持。”

  • 限制承诺最细微的变化是有意义的。这意味着,使用频繁的小额承诺,而不是很少的大额承诺。例如,如果实现功能X需要对库Y做一个小的更改,那么首先将更改提交到库Y,然后在单独的提交中提交功能X。这对帮助每个人跟踪你的变化有很大的帮助。

  • 将错误修复与功能更改分开。根据:ref:supported versions policy,可能需要将错误修复返回到稳定分支。

  • 如果你的提交解决了 Django ticket tracker 中的一个 ticket,请在提交信息的开头添加 “Fixed #xxxxx”,其中 ”xxxxx” 是你提交所解决的 ticket 的编号。示例:”Fixed #123 — Added whizbang feature.” 。当系统检测到这种提交信息格式时,系统会自动关闭所指向的 ticket 并将完整的提交信息作为评论发出。

    如果你好奇的话,我们使用 Trac plugin 来实现这种机制。

备注

Note that the Trac integration doesn’t know anything about pull requests. So if you try to close a pull request with the phrase “closes #400” in your commit message, GitHub will close the pull request, but the Trac plugin will not close the same numbered ticket in Trac.

  • 如果你只想要在提交信息中引用 Django ticket tracker 中的某个 ticket ,但并*不*想要关闭它时,可以使用 “Ref #xxxxx”,其中 “xxxxx” 是你的提交想引用的 ticket 的编号。这会触发系统自动的在被引用的 ticket 下发送一条评论。

  • 使用此模式为后端端口编写提交消息:

    1. [<Django version>] Fixed <ticket> -- <description>
    2. Backport of <revision> from <branch>.

    例如:

    1. [1.3.x] Fixed #17028 -- Changed diveintopython.org -> diveintopython.net.
    2. Backport of 80c0cbf1c97047daed2c5b41b296bbc56fe1d7e3 from main.

    There’s a script on the wiki to automate this.

    如果提交修复了回归,请将其包含在提交消息中:

    1. Regression in 6ecccad711b52f9273b1acb07a57d3f806e93928.

    (使用引入回归的提交哈希)。

恢复提交

没有人是完美的;一些错误可能会被提交

But try very hard to ensure that mistakes don’t happen. Just because we have a reversion policy doesn’t relax your responsibility to aim for the highest quality possible. Really: double-check your work, or have it checked by another merger before you commit it in the first place!

当你发现了一个错误的提交,请遵循如下步骤:

  • 可能的话,让原始作者撤回他们的提交。
  • 不要在未获得原始作者同意的情况下还原其他作者的更改。
  • 使用 git revert — 会回退提交,但原提交依然会留在提交历史中。
  • 如果无法联系到原始作者(在合理的时间内——一天左右),并且问题很严重——崩溃bug、重大测试失败等等——那么在| django developers |邮件列表上征求反对意见,如果没有反对意见,则回复。
  • 如果问题不大(比如说冻结后的提交),就等着吧。
  • If there’s a disagreement between the merger and the reverter-to-be then try to work it out on the django-developers mailing list. If an agreement can’t be reached then it should be put to a vote.
  • 如果该提交引入了一个已确认或已披露的安全漏洞,那么该提交可能会在未经任何允许的情况下被立即还原。
  • 如果提交的内容破坏了发布分支,发布分支的维护者可以在不经许可的情况下将该提交回退。
  • 如果错误地将主题分支推送到 “django/django”,请将其删除。例如,如果你做了:git push upstream feature_antigravity` ,那么做一个反向推送:git push upstream:feature_antigravity