{"title":"Committing code","version":"6.1","locale":"el","docname":"internals/contributing/committing-code","url":"/el/6.1/internals/contributing/committing-code/","canonical":"https://djangodocs.dev/el/6.1/internals/contributing/committing-code/","summary":"This section is addressed to the mergers and to anyone interested in knowing how code gets committed into Django. The Committing guidelines apply to all…","html":"<h1>Committing code<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 mergers and to anyone interested in knowing\nhow code gets committed into Django. The <a class=\"reference internal\" href=\"#committing-guidelines\"><span class=\"std std-ref\">Committing guidelines</span></a> apply\nto all contributors, with or without commit rights.</p>\n<p>If you’re a community member who wants to contribute code to Django, look at\n<a class=\"reference internal\" href=\"/el/6.1/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>Handling 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>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 mergers - who will likely be more\nfamiliar with the commit guidelines - may decide to bring a commit up to\nstandard themselves.</p>\n<p>You may want to have Jenkins or GitHub actions test the pull request with one\nof the pull request builders that doesn’t run automatically, such as Oracle or\nSelenium. See the <a class=\"reference external\" href=\"https://code.djangoproject.com/wiki/CI\">CI 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=\"ini\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Ini</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=\"Ini code\"><code><span class=\"k\">[alias]</span>\n<span class=\"w\">    </span><span class=\"na\">pr</span><span class=\"w\"> </span><span class=\"o\">=</span><span class=\"w\"> </span><span class=\"s\">!sh -c \\&quot;git fetch upstream pull/${1}/head:pr/${1} &amp;&amp; git checkout pr/${1}\\&quot;</span>\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 main.</span>\n<span class=\"gp\">$ </span>git<span class=\"w\"> </span>checkout<span class=\"w\"> </span>main\n<span class=\"gp\">$ </span>git<span class=\"w\"> </span>pull<span class=\"w\"> </span>upstream<span class=\"w\"> </span>main\n<span class=\"gp\">$ </span><span class=\"c1\"># Rebase the pull request on main.</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>main\n<span class=\"gp\">$ </span>git<span class=\"w\"> </span>checkout<span class=\"w\"> </span>main\n<span class=\"gp\">$ </span><span class=\"c1\"># Merge the work as &quot;fast-forward&quot; to main 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>main\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>main\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 main.</span>\n<span class=\"gp\">...\\&gt;</span> git checkout main\n<span class=\"gp\">...\\&gt;</span> git pull upstream main\n<span class=\"gp\">...\\&gt;</span> <span class=\"c1\">REM Rebase the pull request on main.</span>\n<span class=\"gp\">...\\&gt;</span> git checkout pr/####\n<span class=\"gp\">...\\&gt;</span> git rebase main\n<span class=\"gp\">...\\&gt;</span> git checkout main\n<span class=\"gp\">...\\&gt;</span> <span class=\"c1\">REM Merge the work as &quot;fast-forward&quot; to main 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 main\n<span class=\"gp\">...\\&gt;</span> <span class=\"c1\">REM Push!</span>\n<span class=\"gp\">...\\&gt;</span> git push upstream main\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 main but before merging and pushing\nto upstream. This allows the commit hashes on main and the branch to match\nwhich 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 «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 merger 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>These guidelines apply to all commits to Django’s Git repository, whether\nsubmitted by a contributor via a pull request or landed directly by a merger:</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 external\" href=\"https://forum.djangoproject.com/\">Django Forum</a> before making\nthe change.</p>\n<p>If you bring something up and nobody responds, please don’t take that\nto mean your idea is great and should be implemented immediately because\nnobody contested it. Everyone doesn’t always have a lot of time to read\ndiscussions immediately, so you may have to wait a couple of days before\ngetting a response.</p>\n</li>\n<li><p>Write detailed commit messages in the past tense, not present tense, and\nend the subject line with a period.</p>\n<ul class=\"simple\">\n<li><p>Correct: «Fixed Unicode bug in RSS API.»</p></li>\n<li><p>Incorrect: «Fixes Unicode bug in RSS API.» (present tense)</p></li>\n<li><p>Incorrect: «Fixing Unicode bug in RSS API.» («-ing» form)</p></li>\n<li><p>Incorrect: «Fixed Unicode bug in RSS API» (missing trailing period)</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.</p>\n<p>In the body of the commit message more detail is better than less, and should\nexplain <em>why</em> the change was made, not <em>what</em> was changed or <em>how</em>. The code\nitself shows what changed; the commit message should provide the context and\nreasoning that the code cannot.</p>\n<p>Credit the contributors in the commit message: «Thanks A for the report and B\nfor review.» Use git’s <a class=\"reference external\" href=\"https://docs.github.com/en/pull-requests/committing-changes-to-your-project/creating-and-editing-commits/creating-a-commit-with-multiple-authors\">Co-Authored-By</a> as appropriate, including anyone\nwhose earlier work the change builds on.</p>\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>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\nThanks to Full Name for the report, and to Reviewer for reviews.\n</code></pre></div>\n</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\n<a class=\"reference internal\" href=\"#backports\"><span class=\"std std-ref\">backported</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>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 «closes #400» in your\ncommit message, GitHub will close the pull request, but the Trac plugin\nwill not close the same numbered ticket in Trac.</p>\n</aside>\n<ul class=\"simple\">\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</ul>\n</section>\n<section id=\"backports\">\n<span id=\"id3\"></span><h2>Backports<a class=\"heading-anchor\" href=\"#backports\"><span class=\"visually-hidden\">Link to this heading</span><span aria-hidden=\"true\">#</span></a></h2>\n<p>Bug fix backports to stable branches are done exclusively by mergers, following\nthe <a class=\"reference internal\" href=\"/el/6.1/internals/release-process/#supported-versions-policy\"><span class=\"std std-ref\">Supported versions</span></a>. A backport consists of cherry-picking a\ncommit from <code class=\"docutils literal notranslate\"><span class=\"pre\">main</span></code> onto the target <code class=\"docutils literal notranslate\"><span class=\"pre\">stable/A.B.x</span></code> branch.</p>\n<p>A backport commit must include two things beyond the original commit message:</p>\n<ul class=\"simple\">\n<li><p>A prefix <code class=\"docutils literal notranslate\"><span class=\"pre\">[A.B.x]</span></code> on the subject line, where <code class=\"docutils literal notranslate\"><span class=\"pre\">A.B.x</span></code> is the name of the\n<code class=\"docutils literal notranslate\"><span class=\"pre\">stable/A.B.x</span></code> branch being targeted.</p></li>\n<li><p>A suffix <code class=\"docutils literal notranslate\"><span class=\"pre\">Backport</span> <span class=\"pre\">of</span> <span class=\"pre\">&lt;sha&gt;</span> <span class=\"pre\">from</span> <span class=\"pre\">main.</span></code> line in the commit body, pointing\nto the original commit hash.</p></li>\n</ul>\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 main.\n</code></pre></div>\n<p>If the backport also fixes a regression, add a line identifying the commit that\nintroduced it:</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>There are three ways to do a backport, depending on your workflow:</p>\n<p><strong>Option 1: fully manual</strong></p>\n<p>Cherry-pick the commit onto the stable branch, then amend the commit message to\nadd the required prefix and backport note:</p>\n<div class=\"code-block\" data-language=\"shell\"><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>git<span class=\"w\"> </span>cherry-pick<span class=\"w\"> </span>&lt;sha&gt;\ngit<span class=\"w\"> </span>commit<span class=\"w\"> </span>--amend\n</code></pre></div>\n<p>If the cherry-pick produces conflicts, resolve them, stage the changes, then\nrun <code class=\"docutils literal notranslate\"><span class=\"pre\">git</span> <span class=\"pre\">cherry-pick</span> <span class=\"pre\">--continue</span></code> before amending. This option requires no\nsetup but relies entirely on remembering to format the message correctly.</p>\n<p><strong>Option 2: using the helper script in the repo</strong></p>\n<p>The <code class=\"docutils literal notranslate\"><span class=\"pre\">scripts/backport.sh</span></code> Bash script automates the cherry-pick and rewrites\nthe commit message with the correct prefix and backport note. Run it from the\ntarget stable branch:</p>\n<div class=\"code-block\" data-language=\"shell\"><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>bash<span class=\"w\"> </span>scripts/backport.sh<span class=\"w\"> </span>&lt;sha&gt;\n</code></pre></div>\n<p>This is straightforward for clean cherry-picks, but if conflicts are produced,\nyou will need to resolve them manually and add the prefix and backport note to\nthe commit message yourself.</p>\n<p><strong>Option 3: using the</strong> <code class=\"docutils literal notranslate\"><span class=\"pre\">prepare-commit-msg</span></code> <strong>git hook</strong></p>\n<p>The <code class=\"docutils literal notranslate\"><span class=\"pre\">scripts/prepare_commit_msg.py</span></code> Python script can be installed as a\n<code class=\"docutils literal notranslate\"><span class=\"pre\">prepare-commit-msg</span></code> git hook. It automatically adds the <code class=\"docutils literal notranslate\"><span class=\"pre\">[A.B.x]</span></code> prefix\nto the subject line, appends <code class=\"docutils literal notranslate\"><span class=\"pre\">Backport</span> <span class=\"pre\">of</span> <span class=\"pre\">&lt;sha&gt;</span> <span class=\"pre\">from</span> <span class=\"pre\">main.</span></code> to the commit\nbody, and ensures the subject line ends with a period, even when the\ncherry-pick produces conflicts. To install it, create an executable file\n<code class=\"docutils literal notranslate\"><span class=\"pre\">.git/hooks/prepare-commit-msg</span></code> containing:</p>\n<div class=\"code-block\" data-language=\"sh\"><div class=\"code-block-toolbar\"><span class=\"code-block-language\">Sh</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=\"Sh code\"><code><span class=\"ch\">#!/bin/sh</span>\n<span class=\"nb\">exec</span><span class=\"w\"> </span>python<span class=\"w\"> </span>scripts/prepare_commit_msg.py<span class=\"w\"> </span><span class=\"s2\">&quot;</span><span class=\"nv\">$@</span><span class=\"s2\">&quot;</span>\n</code></pre></div>\n<p>Once installed, a plain <code class=\"docutils literal notranslate\"><span class=\"pre\">git</span> <span class=\"pre\">cherry-pick</span> <span class=\"pre\">&lt;sha&gt;</span></code> on a stable branch is\nsufficient; the hook handles the message formatting in all cases.</p>\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 merger <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 <a class=\"reference external\" href=\"https://forum.djangoproject.com/\">Django Forum</a>\nthen 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 merger and the reverter-to-be then try\nto work it out on the <a class=\"reference external\" href=\"https://forum.djangoproject.com/\">Django Forum</a> . If an agreement can’t be reached then\nit should be 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":"Handling pull requests","anchor":"handling-pull-requests","children":[]},{"title":"Committing guidelines","anchor":"committing-guidelines","children":[]},{"title":"Backports","anchor":"backports","children":[]},{"title":"Reverting commits","anchor":"reverting-commits","children":[]}],"breadcrumbs":[{"docname":"internals/index","title":"Django internals","url":"/el/6.1/internals/"},{"docname":"internals/contributing/index","title":"Contributing to Django","url":"/el/6.1/internals/contributing/"},{"docname":"internals/contributing/writing-code/index","title":"Contributing code","url":"/el/6.1/internals/contributing/writing-code/"}],"prev":{"docname":"internals/contributing/accessibility","title":"Accessibility","url":"/el/6.1/internals/contributing/accessibility/"},"next":{"docname":"internals/contributing/writing-documentation","title":"Writing documentation","url":"/el/6.1/internals/contributing/writing-documentation/"},"formats":{"html":"/el/6.1/internals/contributing/committing-code/","markdown":"/el/6.1/internals/contributing/committing-code.md","json":"/el/6.1/internals/contributing/committing-code.json"},"source":"https://github.com/django/django/blob/stable/6.1.x/docs/internals/contributing/committing-code.txt","official":"https://docs.djangoproject.com/el/6.1/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"],"inLocales":["en","sv","zh-hans","ga","fr","ja","id","it","pt-br","ko","es","el","pl"]}