Skip to content

Commit

Permalink
We're in Xdebug 3.3 already, update contributing guidelines
Browse files Browse the repository at this point in the history
  • Loading branch information
derickr committed Mar 28, 2024
1 parent e228555 commit 523b80e
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions CONTRIBUTING.rst
Expand Up @@ -29,9 +29,9 @@ Initial Set-up
git remote add upstream https://github.com/xdebug/xdebug.git
git fetch upstream

- Add a tracking branch for Xdebug 3.1::
- Add a tracking branch for Xdebug 3.3::

git checkout --track origin/xdebug_3_1
git checkout --track origin/xdebug_3_3

Branches
--------
Expand All @@ -40,18 +40,18 @@ There are two branches in operation:

``master``
This is were all new feature Pull Requests should be targeted at
``xdebug_3_1``
``xdebug_3_3``
This is were all bug fix Pull Requests should be targeted at. The
maintainer will add them to ``master`` too when merging the Pull Request.

Working on a Pull Request
-------------------------

- Make sure that your ``master`` and ``xdebug_3_1`` branches are up to date
- Make sure that your ``master`` and ``xdebug_3_3`` branches are up to date
with the ``upstream`` repository.
- Create an issue in the `issue tracker <https://bugs.xdebug.org>`_ (if none
exists yet).
- Switch to the right target branch (``master`` for features, ``xdebug_3_1``
- Switch to the right target branch (``master`` for features, ``xdebug_3_3``
for bug fixes).
- Create a feature branch::

Expand Down Expand Up @@ -89,7 +89,7 @@ Working on a Pull Request
will be targeting, for example to rebase against the current bug fix
branch::
git fetch upstream && git rebase upstream/xdebug_3_1
git fetch upstream && git rebase upstream/xdebug_3_3
- Push your changes to your remote repository::
Expand Down

0 comments on commit 523b80e

Please sign in to comment.