@@ -113,7 +113,7 @@ Choose the right Branch
113113Before working on a patch, you must determine on which branch you need to
114114work:
115115
116- * ``2.3 ``, if you are fixing a bug for an existing feature or want to make a
116+ * ``2.7 ``, if you are fixing a bug for an existing feature or want to make a
117117 change that falls into the:doc: `list of acceptable changes in patch versions
118118 </contributing/code/maintenance>` (you may have to choose a higher branch if
119119 the feature you are fixing was introduced in a later version);
@@ -124,7 +124,7 @@ work:
124124
125125 All bug fixes merged into maintenance branches are also merged into more
126126 recent branches on a regular basis. For instance, if you submit a patch
127- for the ``2.3 `` branch, the patch will also be applied by the core team on
127+ for the ``2.7 `` branch, the patch will also be applied by the core team on
128128 the ``master `` branch.
129129
130130Create a Topic Branch
@@ -137,18 +137,18 @@ topic branch:
137137
138138 $ git checkout -b BRANCH_NAME master
139139
140- Or, if you want to provide a bugfix for the ``2.3 `` branch, first track the remote
141- ``2.3 `` branch locally:
140+ Or, if you want to provide a bugfix for the ``2.7 `` branch, first track the remote
141+ ``2.7 `` branch locally:
142142
143143..code-block ::bash
144144
145- $ git checkout -t origin/2.3
145+ $ git checkout -t origin/2.7
146146
147- Then create a new branch off the ``2.3 `` branch to work on the bugfix:
147+ Then create a new branch off the ``2.7 `` branch to work on the bugfix:
148148
149149..code-block ::bash
150150
151- $ git checkout -b BRANCH_NAME 2.3
151+ $ git checkout -b BRANCH_NAME 2.7
152152
153153 ..tip ::
154154
@@ -236,7 +236,7 @@ while to finish your changes):
236236
237237 ..tip ::
238238
239- Replace ``master `` with the branch you selected previously (e.g. ``2.3 ``)
239+ Replace ``master `` with the branch you selected previously (e.g. ``2.7 ``)
240240 if you are working on a bugfix
241241
242242When doing the ``rebase `` command, you might have to fix merge conflicts.
@@ -263,8 +263,8 @@ You can now make a pull request on the ``symfony/symfony`` GitHub repository.
263263
264264..tip ::
265265
266- Take care to point your pull request towards ``symfony:2.3 `` if you want
267- the core team to pull a bugfix based on the ``2.3 `` branch.
266+ Take care to point your pull request towards ``symfony:2.7 `` if you want
267+ the core team to pull a bugfix based on the ``2.7 `` branch.
268268
269269To ease the core team work, always include the modified components in your
270270pull request message, like in:
@@ -335,7 +335,7 @@ Rework your Patch
335335
336336Based on the feedback on the pull request, you might need to rework your
337337patch. Before re-submitting the patch, rebase with ``upstream/master `` or
338- ``upstream/2.3 ``, don't merge; and force the push to the origin:
338+ ``upstream/2.7 ``, don't merge; and force the push to the origin:
339339
340340..code-block ::bash
341341