You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -47,7 +47,7 @@ cd jquery && npm run build
47
47
```
48
48
The built version of jQuery will be put in the `dist/` subdirectory, along with the minified copy and associated map file.
49
49
50
-
If you want create custom build or help with jQuery development, it would be better to install [grunt command line interface](https://github.com/gruntjs/grunt-cli) as a global package:
50
+
If you want to create custom build or help with jQuery development, it would be better to install [grunt command line interface](https://github.com/gruntjs/grunt-cli) as a global package:
51
51
52
52
```
53
53
npm install -g grunt-cli
@@ -57,7 +57,7 @@ Make sure you have `grunt` installed by testing:
57
57
grunt -V
58
58
```
59
59
60
-
Now by running the `grunt` command, in the jquery directory, you can build a full version of jQuery, just like with a`npm run build` command:
60
+
Now by running the `grunt` command, in the jquery directory, you can build a full version of jQuery, just like with an`npm run build` command:
61
61
```
62
62
grunt
63
63
```
@@ -209,7 +209,7 @@ As the source code is handled by the Git version control system, it's useful to
209
209
210
210
### Cleaning ###
211
211
212
-
If you want to purge your working directory back to the status of upstream, following commands can be used (remember everything you've worked on is gone after these):
212
+
If you want to purge your working directory back to the status of upstream, the following commands can be used (remember everything you've worked on is gone after these):
213
213
214
214
```bash
215
215
git reset --hard upstream/master
@@ -218,7 +218,7 @@ git clean -fdx
218
218
219
219
### Rebasing ###
220
220
221
-
For feature/topic branches, you should always use the `--rebase` flag to `git pull`, or if you are usually handling many temporary "to be in a github pull request" branches, run following to automate this:
221
+
For feature/topic branches, you should always use the `--rebase` flag to `git pull`, or if you are usually handling many temporary "to be in a github pull request" branches, run the following to automate this:
222
222
223
223
```bash
224
224
git config branch.autosetuprebase local
@@ -230,7 +230,7 @@ git config branch.autosetuprebase local
230
230
If you're getting merge conflicts when merging, instead of editing the conflicted files manually, you can use the feature
231
231
`git mergetool`. Even though the default tool `xxdiff` looks awful/old, it's rather useful.
232
232
233
-
Following are some commands that can be used there:
233
+
The following are some commands that can be used there:
0 commit comments