{"title":"Confirmando código","version":"2.0","locale":"es","docname":"internals/contributing/committing-code","url":"/es/2.0/internals/contributing/committing-code/","canonical":"https://djangodocs.dev/es/2.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>Confirmando código<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=\"/es/2.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>Gestionando las pull requests<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>Ya que Django se aloja ahora en GitHub, la mayoría de los parches se proporcionan en la forma de pull requests.</p>\n<p>Al confirmar una pull request, asegúrese de que cada commit individual coincida con la guía de commits que se describe a continuación. Se  espera que los contribuyentes proporcionen las mejores pull requests posibles. Sin embargo, en la práctica los committers, quienes probablemente estarán más familiarizados con la guía de commits, pueden decidir adecuar a la norma un commit por sí mismos.</p>\n<aside class=\"admonition admonition-note\" role=\"note\">\n<p class=\"admonition-title\">Nota</p>\n<p>Before merging, but after reviewing, have Jenkins test the pull request by\ncommenting «buildbot, test this please» on the PR.\nSee our <a class=\"reference external\" href=\"https://code.djangoproject.com/wiki/Jenkins\">Jenkins wiki page</a> for more details.</p>\n</aside>\n<p>An easy way to checkout a pull request locally is to add an alias to your\n<code class=\"docutils literal notranslate\"><span class=\"pre\">~/.gitconfig</span></code> (<code class=\"docutils literal notranslate\"><span class=\"pre\">upstream</span></code> is assumed to be <code class=\"docutils literal notranslate\"><span class=\"pre\">django/django</span></code>):</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>Now you can simply 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\nrequest.</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=\"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<p>For changes on your own branches, force push to your fork after rebasing on\nmaster but before merging and pushing to upstream. This allows the commit\nhashes on master and your branch to match which automatically closes the pull\nrequest. Since you can’t push to other contributors” branches, comment on the\npull request «Merged in XXXXXXX» (replacing with the commit hash) after you\nmerge it. Trac checks for this message format to indicate on the ticket page\nwhether or not a pull request is merged.</p>\n<p>If a pull request doesn’t need to be merged as multiple commits, you can use\nGitHub’s «Squash and merge» 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>Committing guidelines<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 «medium-to-big» is according to\nyour judgment, please bring things up on the <a class=\"reference internal\" href=\"/es/2.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=\"/es/2.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: «Fixed Unicode bug in RSS API.»</p></li>\n<li><p>Bad: «Fixes Unicode bug in RSS API.»</p></li>\n<li><p>Bad: «Fixing Unicode bug in RSS API.»</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>If the patch wasn’t a pull request, you should credit the contributors in\nthe commit message: «Thanks A for report, B for the patch and C for the\nreview.»</p>\n</li>\n<li><p>For commits to a branch, prefix the commit message with the branch name.\nFor example: «[1.4.x] Fixed #xxxxx – Added support for mind reading.»</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>Separate bug fixes from feature changes. Bugfixes may need to be backported\nto the stable branch, according to <a class=\"reference internal\" href=\"/es/2.0/internals/release-process/#supported-versions-policy\"><span class=\"std std-ref\">Supported versions</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 «Fixed #xxxxx», where «xxxxx» is the\nnumber of the ticket your commit fixes. Example: «Fixed #123 – Added\nwhizbang feature.». 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>If your commit closes a ticket and is in a branch, use the branch name\nfirst, then the «Fixed #xxxxx.» For example:\n«[1.4.x] Fixed #123 – Added whizbang feature.»</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\">Nota</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 «closes #400» 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 «Refs #xxxxx», where «xxxxx»\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</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=\"/es/2.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=\"/es/2.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>, just 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>,\njust do 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":"Gestionando las pull requests","anchor":"handling-pull-requests","children":[]},{"title":"Committing guidelines","anchor":"committing-guidelines","children":[]},{"title":"Reverting commits","anchor":"reverting-commits","children":[]}],"breadcrumbs":[{"docname":"internals/index","title":"Django internals","url":"/es/2.0/internals/"},{"docname":"internals/contributing/index","title":"Contribuyendo con Django","url":"/es/2.0/internals/contributing/"}],"prev":{"docname":"internals/contributing/localizing","title":"Localizando Django","url":"/es/2.0/internals/contributing/localizing/"},"next":{"docname":"internals/mailing-lists","title":"Mailing lists","url":"/es/2.0/internals/mailing-lists/"},"formats":{"html":"/es/2.0/internals/contributing/committing-code/","markdown":"/es/2.0/internals/contributing/committing-code.md","json":"/es/2.0/internals/contributing/committing-code.json"},"source":"https://github.com/django/django/blob/stable/2.0.x/docs/internals/contributing/committing-code.txt","official":"https://docs.djangoproject.com/es/2.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"]}