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

Skip to content

Commit 1052aa4

Browse files
committed
Update coding guide for 0.99 version
svn path=/trunk/matplotlib/; revision=7321
1 parent c05ef38 commit 1052aa4

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

doc/devel/coding_guide.rst

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ Checking out the main source::
2727
Branch checkouts, eg the maintenance branch::
2828

2929
svn co https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/\
30-
v0_91_maint mpl91 --username=youruser --password=yourpass
30+
v0_99_maint mpl99 --username=youruser --password=yourpass
3131

32-
The current release of the trunk is in the 0.98.5 maintenance branch::
32+
The current release of the trunk is in the 0.99.x maintenance branch::
3333

3434
svn co https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/\
35-
v0_98_5_maint mpl98.5 --username=youruser --password=yourpass
35+
v0_99_maint mpl99 --username=youruser --password=yourpass
3636

3737

3838
Committing changes
@@ -96,7 +96,7 @@ The basic procedure is:
9696
svnmerge.py merge -S BRANCHNAME
9797

9898
Where BRANCHNAME is the name of the branch to merge *from*,
99-
e.g. v0_98_5_maint.
99+
e.g. v0_99_maint.
100100

101101
If you wish to merge only specific revisions (in an unusual
102102
situation), do::
@@ -130,17 +130,17 @@ Setting up svnmerge
130130
with this.
131131

132132
* Creating a new branch from the trunk (if the release version is
133-
0.98.5 at revision 6573)::
133+
0.99 at revision 6573)::
134134

135135
> svn copy \
136-
https://matplotlib.svn.sf.net/svnroot/matplotlib/trunk/matplotlib@6573 \
137-
https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v0_98_5_maint \
138-
-m "Creating maintenance branch for 0.98.5"
136+
https://matplotlib.svn.sf.net/svnroot/matplotlib/trunk/matplotlib@7315 \
137+
https://matplotlib.svn.sf.net/svnroot/matplotlib/branches/v0_99_maint \
138+
-m "Creating maintenance branch for 0.99"
139139

140140
* You can add a new branch for the trunk to "track" using
141141
"svnmerge.py init", e.g., from a working copy of the trunk::
142142

143-
> svnmerge.py init https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/v0_98_5_maint
143+
> svnmerge.py init https://matplotlib.svn.sourceforge.net/svnroot/matplotlib/branches/v0_99_maint
144144
property 'svnmerge-integrated' set on '.'
145145

146146
After doing a "svn commit" on this, this merge tracking is available
@@ -150,7 +150,7 @@ Setting up svnmerge
150150
* Tracking can later be removed with the "svnmerge.py uninit" command,
151151
e.g.::
152152

153-
> svnmerge.py -S v0_9_5_maint uninit
153+
> svnmerge.py -S v0_99_maint uninit
154154

155155
.. _using-git:
156156

0 commit comments

Comments
 (0)