{"title":"コードのコミット","version":"3.0","locale":"ja","docname":"internals/contributing/committing-code","url":"/ja/3.0/internals/contributing/committing-code/","canonical":"https://djangodocs.dev/ja/3.0/internals/contributing/committing-code/","summary":"This section is addressed to the committers and to anyone interested in knowing how code gets committed into Django. If you're a community member who wants to…","html":"<h1>コードのコミット<a class=\"heading-anchor\" href=\"#committing-code\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h1>\n<p>This section is addressed to the committers and to anyone interested in knowing\nhow code gets committed into Django. If you're a community member who wants to\ncontribute code to Django, look at <a class=\"reference internal\" href=\"/ja/3.0/internals/contributing/writing-code/working-with-git/\"><span class=\"doc\">Working with Git and GitHub</span></a> instead.</p>\n<section id=\"handling-pull-requests\">\n<span id=\"id1\"></span><h2>プルリクエストの取り扱い<a class=\"heading-anchor\" href=\"#handling-pull-requests\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>Since Django is hosted on GitHub, patches are provided in the form of pull\nrequests.</p>\n<p>When committing a pull request, make sure each individual commit matches the\ncommit guidelines described below. Contributors are expected to provide the\nbest pull requests possible. In practice however, committers - who will likely\nbe more familiar with the commit guidelines - may decide to bring a commit up\nto standard themselves.</p>\n<p>You may want to have Jenkins test the pull request with one of the pull request\nbuilders that doesn't run automatically, such as Oracle or Selenium. See the\n<a class=\"reference external\" href=\"https://code.djangoproject.com/wiki/Jenkins\">Jenkins wiki page</a> for instructions.</p>\n<p>If you find yourself checking out pull requests locally more often, this git\nalias will be helpful:</p>\n<div class=\"code-block\" data-language=\"default\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Code</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Code code\"><code>[alias]\n    pr = !sh -c \\&quot;git fetch upstream pull/${1}/head:pr/${1} &amp;&amp; git checkout pr/${1}\\&quot;\n</code></pre></div>\n<p>Add it to your <code class=\"docutils literal notranslate\"><span class=\"pre\">~/.gitconfig</span></code>, and set <code class=\"docutils literal notranslate\"><span class=\"pre\">upstream</span></code> to be <code class=\"docutils literal notranslate\"><span class=\"pre\">django/django</span></code>.\nThen you can run <code class=\"docutils literal notranslate\"><span class=\"pre\">git</span> <span class=\"pre\">pr</span> <span class=\"pre\">####</span></code> to checkout the corresponding pull request.</p>\n<p>At this point, you can work on the code. Use <code class=\"docutils literal notranslate\"><span class=\"pre\">git</span> <span class=\"pre\">rebase</span> <span class=\"pre\">-i</span></code> and <code class=\"docutils literal notranslate\"><span class=\"pre\">git</span>\n<span class=\"pre\">commit</span> <span class=\"pre\">--amend</span></code> to make sure the commits have the expected level of quality.\nOnce you're ready:</p>\n<div class=\"console\" data-console><div class=\"console-panel\" data-platform=\"unix\"><p class=\"console-label\" id=\"console-0-unix-label\">Linux / macOS</p><div class=\"code-block\" data-language=\"console\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Shell</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Shell code\"><code><span class=\"gp\">$ </span><span class=\"c1\"># Pull in the latest changes from master.</span>\n<span class=\"gp\">$ </span>git<span class=\"w\"> </span>checkout<span class=\"w\"> </span>master\n<span class=\"gp\">$ </span>git<span class=\"w\"> </span>pull<span class=\"w\"> </span>upstream<span class=\"w\"> </span>master\n<span class=\"gp\">$ </span><span class=\"c1\"># Rebase the pull request on master.</span>\n<span class=\"gp\">$ </span>git<span class=\"w\"> </span>checkout<span class=\"w\"> </span>pr/####\n<span class=\"gp\">$ </span>git<span class=\"w\"> </span>rebase<span class=\"w\"> </span>master\n<span class=\"gp\">$ </span>git<span class=\"w\"> </span>checkout<span class=\"w\"> </span>master\n<span class=\"gp\">$ </span><span class=\"c1\"># Merge the work as &quot;fast-forward&quot; to master to avoid a merge commit.</span>\n<span class=\"gp\">$ </span><span class=\"c1\"># (in practice, you can omit &quot;--ff-only&quot; since you just rebased)</span>\n<span class=\"gp\">$ </span>git<span class=\"w\"> </span>merge<span class=\"w\"> </span>--ff-only<span class=\"w\"> </span>pr/XXXX\n<span class=\"gp\">$ </span><span class=\"c1\"># If you&#39;re not sure if you did things correctly, check that only the</span>\n<span class=\"gp\">$ </span><span class=\"c1\"># changes you expect will be pushed to upstream.</span>\n<span class=\"gp\">$ </span>git<span class=\"w\"> </span>push<span class=\"w\"> </span>--dry-run<span class=\"w\"> </span>upstream<span class=\"w\"> </span>master\n<span class=\"gp\">$ </span><span class=\"c1\"># Push!</span>\n<span class=\"gp\">$ </span>git<span class=\"w\"> </span>push<span class=\"w\"> </span>upstream<span class=\"w\"> </span>master\n<span class=\"gp\">$ </span><span class=\"c1\"># Delete the pull request branch.</span>\n<span class=\"gp\">$ </span>git<span class=\"w\"> </span>branch<span class=\"w\"> </span>-d<span class=\"w\"> </span>pr/xxxx\n</code></pre></div>\n</div><div class=\"console-panel\" data-platform=\"windows\"><p class=\"console-label\" id=\"console-0-windows-label\">Windows</p><div class=\"code-block\" data-language=\"doscon\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Windows</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"Windows shell\"><code><span class=\"gp\">...\\&gt;</span> <span class=\"c1\">REM Pull in the latest changes from master.</span>\n<span class=\"gp\">...\\&gt;</span> git checkout master\n<span class=\"gp\">...\\&gt;</span> git pull upstream master\n<span class=\"gp\">...\\&gt;</span> <span class=\"c1\">REM Rebase the pull request on master.</span>\n<span class=\"gp\">...\\&gt;</span> git checkout pr/####\n<span class=\"gp\">...\\&gt;</span> git rebase master\n<span class=\"gp\">...\\&gt;</span> git checkout master\n<span class=\"gp\">...\\&gt;</span> <span class=\"c1\">REM Merge the work as &quot;fast-forward&quot; to master to avoid a merge commit.</span>\n<span class=\"gp\">...\\&gt;</span> <span class=\"c1\">REM (in practice, you can omit &quot;--ff-only&quot; since you just rebased)</span>\n<span class=\"gp\">...\\&gt;</span> git merge --ff-only pr/XXXX\n<span class=\"gp\">...\\&gt;</span> <span class=\"c1\">REM If you&#39;re not sure if you did things correctly, check that only the</span>\n<span class=\"gp\">...\\&gt;</span> <span class=\"c1\">REM changes you expect will be pushed to upstream.</span>\n<span class=\"gp\">...\\&gt;</span> git push --dry-run upstream master\n<span class=\"gp\">...\\&gt;</span> <span class=\"c1\">REM Push!</span>\n<span class=\"gp\">...\\&gt;</span> git push upstream master\n<span class=\"gp\">...\\&gt;</span> <span class=\"c1\">REM Delete the pull request branch.</span>\n<span class=\"gp\">...\\&gt;</span> git branch -d pr/xxxx\n</code></pre></div></div></div>\n<p>Force push to the branch after rebasing on master but before merging and\npushing to upstream. This allows the commit hashes on master and the branch to\nmatch which automatically closes the pull request.</p>\n<p>If a pull request doesn't need to be merged as multiple commits, you can use\nGitHub's &quot;Squash and merge&quot; button on the website. Edit the commit message as\nneeded to conform to <a class=\"reference internal\" href=\"#committing-guidelines\"><span class=\"std std-ref\">the guidelines</span></a> and remove\nthe pull request number that's automatically appended to the message's first\nline.</p>\n<p>When rewriting the commit history of a pull request, the goal is to make\nDjango's commit history as usable as possible:</p>\n<ul class=\"simple\">\n<li><p>If a patch contains back-and-forth commits, then rewrite those into one.\nFor example, if a commit adds some code and a second commit fixes stylistic\nissues introduced in the first commit, those commits should be squashed\nbefore merging.</p></li>\n<li><p>Separate changes to different commits by logical grouping: if you do a\nstylistic cleanup at the same time as you do other changes to a file,\nseparating the changes into two different commits will make reviewing\nhistory easier.</p></li>\n<li><p>Beware of merges of upstream branches in the pull requests.</p></li>\n<li><p>Tests should pass and docs should build after each commit. Neither the\ntests nor the docs should emit warnings.</p></li>\n<li><p>Trivial and small patches usually are best done in one commit. Medium to\nlarge work may be split into multiple commits if it makes sense.</p></li>\n</ul>\n<p>Practicality beats purity, so it is up to each committer to decide how much\nhistory mangling to do for a pull request. The main points are engaging the\ncommunity, getting work done, and having a usable commit history.</p>\n</section>\n<section id=\"committing-guidelines\">\n<span id=\"id2\"></span><h2>コミットガイドライン<a class=\"heading-anchor\" href=\"#committing-guidelines\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>In addition, please follow the following guidelines when committing code to\nDjango's Git repository:</p>\n<ul>\n<li><p>Never change the published history of <code class=\"docutils literal notranslate\"><span class=\"pre\">django/django</span></code> branches by force\npushing. If you absolutely must (for security reasons for example), first\ndiscuss the situation with the team.</p></li>\n<li><p>For any medium-to-big changes, where &quot;medium-to-big&quot; is according to\nyour judgment, please bring things up on the <a class=\"reference internal\" href=\"/ja/3.0/internals/mailing-lists/#django-developers-mailing-list\"><span class=\"std std-ref\">django-developers</span></a>\nmailing list before making the change.</p>\n<p>If you bring something up on <a class=\"reference internal\" href=\"/ja/3.0/internals/mailing-lists/#django-developers-mailing-list\"><span class=\"std std-ref\">django-developers</span></a> and nobody responds,\nplease don't take that to mean your idea is great and should be\nimplemented immediately because nobody contested it. Everyone doesn't always\nhave a lot of time to read mailing list discussions immediately, so you may\nhave to wait a couple of days before getting a response.</p>\n</li>\n<li><p>Write detailed commit messages in the past tense, not present tense.</p>\n<ul class=\"simple\">\n<li><p>Good: &quot;Fixed Unicode bug in RSS API.&quot;</p></li>\n<li><p>Bad: &quot;Fixes Unicode bug in RSS API.&quot;</p></li>\n<li><p>Bad: &quot;Fixing Unicode bug in RSS API.&quot;</p></li>\n</ul>\n<p>The commit message should be in lines of 72 chars maximum. There should be\na subject line, separated by a blank line and then paragraphs of 72 char\nlines. The limits are soft. For the subject line, shorter is better. In the\nbody of the commit message more detail is better than less:</p>\n<div class=\"code-block\" data-language=\"none\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">None</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"None code\"><code>Fixed #18307 -- Added git workflow guidelines.\n\nRefactored the Django&#39;s documentation to remove mentions of SVN\nspecific tasks. Added guidelines of how to use Git, GitHub, and\nhow to use pull request together with Trac instead.\n</code></pre></div>\n<p>Credit the contributors in the commit message: &quot;Thanks A for the report and B\nfor review.&quot; Use git's <a class=\"reference external\" href=\"https://help.github.com/articles/creating-a-commit-with-multiple-authors/\">Co-Authored-By</a> as appropriate.</p>\n</li>\n<li><p>For commits to a branch, prefix the commit message with the branch name.\nFor example: &quot;[1.4.x] Fixed #xxxxx -- Added support for mind reading.&quot;</p></li>\n<li><p>Limit commits to the most granular change that makes sense. This means,\nuse frequent small commits rather than infrequent large commits. For\nexample, if implementing feature X requires a small change to library Y,\nfirst commit the change to library Y, then commit feature X in a separate\ncommit. This goes a <em>long way</em> in helping everyone follow your changes.</p></li>\n<li><p>機能変更からバグ修正を分けてください。バグ修正は <a class=\"reference internal\" href=\"/ja/3.0/internals/release-process/#supported-versions-policy\"><span class=\"std std-ref\">サポートバージョン</span></a> に基づいて安定ブランチにバックポートする必要があることがあるためです。</p></li>\n<li><p>If your commit closes a ticket in the Django <a class=\"reference external\" href=\"https://code.djangoproject.com/\">ticket tracker</a>, begin\nyour commit message with the text &quot;Fixed #xxxxx&quot;, where &quot;xxxxx&quot; is the\nnumber of the ticket your commit fixes. Example: &quot;Fixed #123 -- Added\nwhizbang feature.&quot;. We've rigged Trac so that any commit message in that\nformat will automatically close the referenced ticket and post a comment\nto it with the full commit message.</p>\n<p>For the curious, we're using a <a class=\"reference external\" href=\"https://github.com/trac-hacks/trac-github\">Trac plugin</a> for this.</p>\n</li>\n</ul>\n<aside class=\"admonition admonition-note\" role=\"note\">\n<p class=\"admonition-title\">注釈</p>\n<p>Note that the Trac integration doesn't know anything about pull requests.\nSo if you try to close a pull request with the phrase &quot;closes #400&quot; in your\ncommit message, GitHub will close the pull request, but the Trac plugin\nwill also close the same numbered ticket in Trac.</p>\n</aside>\n<ul>\n<li><p>If your commit references a ticket in the Django <a class=\"reference external\" href=\"https://code.djangoproject.com/\">ticket tracker</a> but\ndoes <em>not</em> close the ticket, include the phrase &quot;Refs #xxxxx&quot;, where &quot;xxxxx&quot;\nis the number of the ticket your commit references. This will automatically\npost a comment to the appropriate ticket.</p></li>\n<li><p>Write commit messages for backports using this pattern:</p>\n<div class=\"code-block\" data-language=\"none\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">None</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"None code\"><code>[&lt;Django version&gt;] Fixed &lt;ticket&gt; -- &lt;description&gt;\n\nBackport of &lt;revision&gt; from &lt;branch&gt;.\n</code></pre></div>\n<p>For example:</p>\n<div class=\"code-block\" data-language=\"none\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">None</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"None code\"><code>[1.3.x] Fixed #17028 -- Changed diveintopython.org -&gt; diveintopython.net.\n\nBackport of 80c0cbf1c97047daed2c5b41b296bbc56fe1d7e3 from master.\n</code></pre></div>\n<p>There's a <a class=\"reference external\" href=\"https://code.djangoproject.com/wiki/CommitterTips#AutomatingBackports\">script on the wiki</a>\nto automate this.</p>\n<p>If the commit fixes a regression, include this in the commit message:</p>\n<div class=\"code-block\" data-language=\"none\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">None</span><button type=\"button\" class=\"copy-button\" data-copy hidden><span class=\"copy-button-label\">Copy</span></button></div><pre role=\"group\" tabindex=\"0\" aria-label=\"None code\"><code>Regression in 6ecccad711b52f9273b1acb07a57d3f806e93928.\n</code></pre></div>\n<p>(use the commit hash where the regression was introduced).</p>\n</li>\n</ul>\n</section>\n<section id=\"reverting-commits\">\n<h2>Reverting commits<a class=\"heading-anchor\" href=\"#reverting-commits\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>Nobody's perfect; mistakes will be committed.</p>\n<p>But try very hard to ensure that mistakes don't happen. Just because we have a\nreversion policy doesn't relax your responsibility to aim for the highest\nquality possible. Really: double-check your work, or have it checked by\nanother committer, <strong>before</strong> you commit it in the first place!</p>\n<p>When a mistaken commit is discovered, please follow these guidelines:</p>\n<ul class=\"simple\">\n<li><p>If possible, have the original author revert their own commit.</p></li>\n<li><p>Don't revert another author's changes without permission from the\noriginal author.</p></li>\n<li><p>Use git revert -- this will make a reverse commit, but the original\ncommit will still be part of the commit history.</p></li>\n<li><p>If the original author can't be reached (within a reasonable amount\nof time -- a day or so) and the problem is severe -- crashing bug,\nmajor test failures, etc. -- then ask for objections on the\n<a class=\"reference internal\" href=\"/ja/3.0/internals/mailing-lists/#django-developers-mailing-list\"><span class=\"std std-ref\">django-developers</span></a> mailing list then revert if there are none.</p></li>\n<li><p>If the problem is small (a feature commit after feature freeze,\nsay), wait it out.</p></li>\n<li><p>If there's a disagreement between the committer and the\nreverter-to-be then try to work it out on the <a class=\"reference internal\" href=\"/ja/3.0/internals/mailing-lists/#django-developers-mailing-list\"><span class=\"std std-ref\">django-developers</span></a>\nmailing list. If an agreement can't be reached then it should\nbe put to a vote.</p></li>\n<li><p>If the commit introduced a confirmed, disclosed security\nvulnerability then the commit may be reverted immediately without\npermission from anyone.</p></li>\n<li><p>The release branch maintainer may back out commits to the release\nbranch without permission if the commit breaks the release branch.</p></li>\n<li><p>If you mistakenly push a topic branch to <code class=\"docutils literal notranslate\"><span class=\"pre\">django/django</span></code>, delete it.\nFor instance, if you did: <code class=\"docutils literal notranslate\"><span class=\"pre\">git</span> <span class=\"pre\">push</span> <span class=\"pre\">upstream</span> <span class=\"pre\">feature_antigravity</span></code>,\ndo a reverse push: <code class=\"docutils literal notranslate\"><span class=\"pre\">git</span> <span class=\"pre\">push</span> <span class=\"pre\">upstream</span> <span class=\"pre\">:feature_antigravity</span></code>.</p></li>\n</ul>\n</section>","rootId":"committing-code","toc":[{"title":"プルリクエストの取り扱い","anchor":"handling-pull-requests","children":[]},{"title":"コミットガイドライン","anchor":"committing-guidelines","children":[]},{"title":"Reverting commits","anchor":"reverting-commits","children":[]}],"breadcrumbs":[{"docname":"internals/index","title":"Django internals","url":"/ja/3.0/internals/"},{"docname":"internals/contributing/index","title":"Django へのコントリビュート","url":"/ja/3.0/internals/contributing/"}],"prev":{"docname":"internals/contributing/localizing","title":"Django のローカライズ","url":"/ja/3.0/internals/contributing/localizing/"},"next":{"docname":"internals/mailing-lists","title":"Mailing lists","url":"/ja/3.0/internals/mailing-lists/"},"formats":{"html":"/ja/3.0/internals/contributing/committing-code/","markdown":"/ja/3.0/internals/contributing/committing-code.md","json":"/ja/3.0/internals/contributing/committing-code.json"},"source":"https://github.com/django/django/blob/stable/3.0.x/docs/internals/contributing/committing-code.txt","official":"https://docs.djangoproject.com/ja/3.0/internals/contributing/committing-code/","inVersions":["6.1","6.0","5.2","5.1","5.0","4.2","4.1","4.0","3.2","3.1","3.0","2.2","2.1","2.0","1.11","1.10","1.9"],"inLocales":["en","zh-hans","fr","ja","id","pt-br","ko","es","el","pl"]}