Skip to content

Commit 3acc725

Browse files
kizutonyganch
authored andcommitted
Fixed the markup for code inside list items
1 parent 1d363a8 commit 3acc725

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed

CONTRIBUTE.md

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
## Pull requests
55

66
1. [Fork](http://help.github.com/fork-a-repo/) the project, clone your fork, and configure the remotes:
7-
```bash
7+
8+
```bash
89
# Clone your fork of the repo into the current directory
910
git clone https://github.com/<your-username>/csscomb.js
1011
# Navigate to the newly cloned directory
@@ -14,14 +15,17 @@ git remote add upstream https://github.com/csscomb/csscomb.js
1415
```
1516

1617
2. If you cloned a while ago, get the latest changes from upstream:
17-
```bash
18+
19+
```bash
1820
git checkout dev
1921
git pull upstream dev
2022
```
21-
**IMPORTANT**: We are using `dev` branch for development, not `master`.
23+
24+
**IMPORTANT**: We are using `dev` branch for development, not `master`.
2225

2326
3. Create a topic branch for your feature, change, or fix:
24-
```bash
27+
28+
```bash
2529
git checkout -b <topic-branch-name>
2630
```
2731

@@ -31,12 +35,14 @@ git checkout -b <topic-branch-name>
3135
5. Update the `README.md` if there were corresponding changes or new options.
3236

3337
6. Locally rebase the upstream development branch into your topic branch:
34-
```bash
38+
39+
```bash
3540
git pull --rebase upstream dev
3641
```
3742

3843
7. Push your topic branch up to your fork:
39-
```bash
44+
45+
```bash
4046
git push origin <topic-branch-name>
4147
```
4248

0 commit comments

Comments
 (0)