@@ -46,7 +46,7 @@ $ git remote add upstream git://github.com/nodejs/node.git
4646For developing new features and bug fixes, the ` master ` branch should be
4747pulled and built upon. See the section on
4848[ backporting] ( #backporting-to-current-and-lts-branches ) if you would like
49- the fix to be backported.
49+ the fix to be backported to other releases .
5050
5151#### Respect the stability index
5252
@@ -327,34 +327,36 @@ widely used, so don't be discouraged!
327327### Backporting to Current and LTS Branches
328328
329329Before backporting or contributing to the LTS releases make sure you are
330- familiar with the LTS information and schedules at
331- https://github.com/nodejs/LTS#lts-schedule
330+ familiar with the [ LTS information and schedules] ( https://github.com/nodejs/LTS#lts-schedule )
332331
333- Items which have already made it from master will be candidates for the
332+ Commits which have already landed on master will be candidates for the
334333"current" release branch(es) and can then also become candidates for
335334inclusion into the "Active LTS" branch(es), especially if they are bug
336- fixes. Any change can be considered for LTS by applying the appropriate
337- lts-watch-vX.x label for the branch you would like it backported to. If a
338- commit is not to be considered for backporting please apply the
339- dont-land-on-vX.x label . If it can be cherry-picked cleanly it will be done
340- by someone from the release team. Generally any changes should have landed
341- in the current release for at least two weeks before considering backporting
342- to the LTS releases.
335+ fixes. Any change can be considered for LTS by requesting @ nodejs/lts apply
336+ the appropriate ` lts-watch-vX.x ` label for the branch you would like it
337+ backported to. If a commit is not to be considered for backporting please
338+ ask for it to be labelled with ` dont-land-on-vX.x ` . If it is to be backported
339+ and can be cherry-picked cleanly it will be done by someone from the release
340+ team. Generally all changes should have landed in the current release for
341+ at least two weeks before considering backporting to the LTS releases.
343342
344343If a manual backport is required when porting your change to the current or
345344LTS branches you may be asked to submit a PR against the staging branch of
346- the release line the backport is targetting ( vX.x-staging) . The easiest way
347- to do this is to use git cherry-pick to pull across the commit hash from
348- master and manually resolve the conflicts using these commands:
345+ the release line the backport is targetting ` vX.x-staging ` . The easiest way
346+ to do the backport this is to use git cherry-pick to pull across the commit
347+ hash from master and manually resolve the conflicts using these commands:
349348
350349```
351350 $ git cherry-pick HASH
352351 // fix all conflicts that are reported
353352 $ git cherry-pick --continue
354353```
355354
355+ When you submit it, please include "vX.x backport" in the PR title.
356+
356357If you need to reference other relevant pull requests regarding the
357- conflicts, list them as "Ref:" links in the PR message.
358+ conflicts, list them as "Refs:" links in the PR message.
359+
358360
359361### Check Out the Collaborator's Guide
360362
0 commit comments