Skip to content

Commit 94a5be1

Browse files
committed
Fix HTML display for docs
Doesn't change display in Markdown
1 parent 0d7c6cb commit 94a5be1

File tree

1 file changed

+15
-18
lines changed

1 file changed

+15
-18
lines changed

docs/development.md

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -62,28 +62,25 @@ The following is a poetic presentation of the protocol in code form.
6262
#### [Shelhamer's](https://github.com/shelhamer) “life of a branch in four acts”
6363

6464
Make the `feature` branch off of the latest `bvlc/master`
65-
```
66-
git checkout master
67-
git pull upstream master
68-
git checkout -b feature
69-
# do your work, make commits
70-
```
65+
66+
git checkout master
67+
git pull upstream master
68+
git checkout -b feature
69+
# do your work, make commits
7170

7271
Prepare to merge by rebasing your branch on the latest `bvlc/master`
73-
```
74-
# make sure master is fresh
75-
git checkout master
76-
git pull upstream master
77-
# rebase your branch on the tip of master
78-
git checkout feature
79-
git rebase master
80-
```
72+
73+
# make sure master is fresh
74+
git checkout master
75+
git pull upstream master
76+
# rebase your branch on the tip of master
77+
git checkout feature
78+
git rebase master
8179

8280
Push your branch to pull request it into `BVLC/caffe:master`
83-
```
84-
git push origin feature
85-
# ...make pull request to master...
86-
```
81+
82+
git push origin feature
83+
# ...make pull request to master...
8784

8885
Now make a pull request! You can do this from the command line (`git pull-request -b master`) if you install [hub](https://github.com/github/hub). Hub has many other magical uses.
8986

0 commit comments

Comments
 (0)