File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -71,43 +71,43 @@ We *love* when people contribute back to the project by patching the bugs they f
71
71
72
72
Create a fork of the jQuery repo on GitHub at https://github.com/jquery/jquery
73
73
74
- Clone your jQuery fork to work locally
74
+ Clone your jQuery fork to work locally:
75
75
76
76
``` bash
77
77
$ git clone
[email protected] :username/jquery.git
78
78
```
79
79
80
- Change directory to the newly created dir jquery/
80
+ Change directory to the newly created dir ` jquery/ ` :
81
81
82
82
``` bash
83
83
$ cd jquery
84
84
```
85
85
86
- Add the jQuery main as a remote. I label mine " upstream"
86
+ Add the jQuery ` main ` as a remote. I label mine ` upstream ` :
87
87
88
88
``` bash
89
89
$ git remote add upstream
[email protected] :jquery/jquery.git
90
90
```
91
91
92
- Get in the habit of pulling in the "upstream" main to stay up to date as jQuery receives new commits
92
+ Get in the habit of pulling in the "upstream" main to stay up to date as jQuery receives new commits:
93
93
94
94
``` bash
95
95
$ git pull upstream main
96
96
```
97
97
98
- Install the necessary dependencies
98
+ Install the necessary dependencies:
99
99
100
100
``` bash
101
101
$ npm install
102
102
```
103
103
104
- Build all jQuery files
104
+ Build all jQuery files:
105
105
106
106
``` bash
107
107
$ npm run build:all
108
108
```
109
109
110
- Start a test server
110
+ Start a test server:
111
111
112
112
``` bash
113
113
$ npm run test:server
You can’t perform that action at this time.
0 commit comments