com php-src: Update CONTRIBUTING: CONTRIBUTING.md
[email protected] (Nikita Popov)
| Newsgroups | php.cvs |
|---|---|
| Message-ID | <[email protected]> |
Commit: 19a692b7d2ffd603224e3e27d982abc536d3cb87 Author: Nikita Popov <[email protected]> Sun, 2 Apr 2017 13:45:08 +0200 Parents: 3a890180d3157f0564e5f4d0d15b8103dd268e25 Branches: master Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=19a692b7d2ffd603224e3e27d982abc536d3cb87 Log: Update CONTRIBUTING Update version numbers, point out not to PR against release branches, point out rebase over merge. [ci skip] Changed paths: M CONTRIBUTING.md Diff: diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index aacb25b..8ab4e87 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -11,15 +11,20 @@ co-ordination. PHP welcomes pull requests to [add tests](#writing-tests), fix bugs and to implement RFCs. Please be sure to include tests as appropriate! -If you are fixing a bug, then please submit your PR against the lowest branch -of PHP that the bug affects, or the oldest fully supported version (the first -green branch on -[the supported version page](http://php.net/supported-versions.php). For -example, at the time of writing in mid-2015, this is PHP 5.5, which corresponds -to the `PHP-5.5` branch in Git. Please also make sure you add a link to the PR -in the bug on [the bug tracker](https://bugs.php.net/). - -Pull requests to implement RFCs should be submitted against `master`. +If you are fixing a bug, then please submit your PR against the lowest actively +supported branch of PHP that the bug affects (only green branches on +[the supported version page](http://php.net/supported-versions.php) are supported). +For example, at the time of writing in mid-2017, the lowest supported version is +PHP 7.0, which corresponds to the `PHP-7.0` branch in Git. Please also make sure you +add a link to the PR in the bug on [the bug tracker](https://bugs.php.net/). + +Pull requests implementing RFCs should be submitted against `master`. + +Pull requests should *never* be submitted against `PHP-x.y.z` branches, as +these are only used for release management. + +If your pull request exhibits conflicts with the base branch, please resolve them +by using `git rebase` instead of `git merge`. ## Filing bugs