Skip to content

Commit 91bd161

Browse files
committed
removing some strange space characters
1 parent 73bb33d commit 91bd161

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

_wikis/BioJava:Make_release.md

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff 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

153155
And 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

0 commit comments

Comments
 (0)