Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 49a14f3

Browse files
authored
Update coding_guide.rst
1 parent 66f8c26 commit 49a14f3

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

doc/devel/coding_guide.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Backports
9191
When doing backports please include the branch you backported the
9292
commit to along with the SHA in a comment on the original PR.
9393

94-
We do a backport from master to 2.x. assuming:
94+
We do a backport from master to v2.0.x assuming:
9595

9696
* ``matplotlib`` is a read-only remote branch of the matplotlib/matplotlib repo
9797

@@ -102,12 +102,12 @@ backport. This can be read off of the github PR page (in the UI with
102102
the merge notification) or through the git CLI tools.::
103103

104104
git fetch matplotlib
105-
git checkout v2.x
106-
git merge --ff-only matplotlib/v2.x
105+
git checkout v2.0.x
106+
git merge --ff-only matplotlib/v2.0.x
107107
git cherry-pick -m 1 TARGET_SHA
108108
git log --graph --decorate # to look at it
109109
# local tests? (use your judgment)
110-
git push DANGER v2.x
110+
git push DANGER v2.0.x
111111
# leave a comment on PR noting sha of the resulting commit
112112
# from the cherry-pick + branch it was moved to
113113

0 commit comments

Comments
 (0)