File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed
Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change 44## Pull requests
55
661 . [ 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
910git 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
16172 . If you cloned a while ago, get the latest changes from upstream:
17- ``` bash
18+
19+ ``` bash
1820git checkout dev
1921git 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
23263 . Create a topic branch for your feature, change, or fix:
24- ``` bash
27+
28+ ``` bash
2529git checkout -b < topic-branch-name>
2630```
2731
@@ -31,12 +35,14 @@ git checkout -b <topic-branch-name>
31355 . Update the ` README.md ` if there were corresponding changes or new options.
3236
33376 . Locally rebase the upstream development branch into your topic branch:
34- ``` bash
38+
39+ ``` bash
3540git pull --rebase upstream dev
3641```
3742
38437 . Push your topic branch up to your fork:
39- ``` bash
44+
45+ ``` bash
4046git push origin < topic-branch-name>
4147```
4248
You can’t perform that action at this time.
0 commit comments