File tree Expand file tree Collapse file tree 1 file changed +12
-8
lines changed
Expand file tree Collapse file tree 1 file changed +12
-8
lines changed Original file line number Diff line number Diff line change @@ -142,18 +142,22 @@ origin refers to the central biojava repository.
142142
143143<span style =" color :red " >Note: double check these commands</span >
144144
145- ` git pull master #merge any commits that occurred while releasing `
146- ` git push --tags origin master #push the new master (with updated pom) and new tags `
145+ ```
146+ git pull master #merge any commits that occurred while releasing
147+ git push --tags origin master #push the new master (with updated pom) and new tags
147148
148- ` git checkout release `
149- ` git merge biojava-3.0.7 `
150- ` git diff biojava-3.0.7 release #shouldn't print anything `
151- ` git push origin release `
149+ git checkout release
150+ git merge biojava-3.0.7
151+ git diff biojava-3.0.7 release #shouldn't print anything
152+ git push origin release
153+ ```
152154
153155And here how to delete a release tag again:
154156
155- ` git tag -d biojava-3.0.7 `
156- ` git push origin :refs/tags/biojava-3.0.7 `
157+ ```
158+ git tag -d biojava-3.0.7
159+ git push origin :refs/tags/biojava-3.0.7
160+ ```
157161
158162### Prepare and release javadoc files
159163
You can’t perform that action at this time.
0 commit comments