We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d716d32 + e554510 commit 2ffbf42Copy full SHA for 2ffbf42
simple-git/readme.md
@@ -415,10 +415,10 @@ pair will be included in the command string as `name=value`. For example:
415
416
```javascript
417
// results in 'git pull origin master --no-rebase'
418
-git().pull('origin', 'master', { '--no-rebase': null });
+git.pull('origin', 'master', { '--no-rebase': null });
419
420
// results in 'git pull origin master --rebase=true'
421
-git().pull('origin', 'master', { '--rebase': 'true' });
+git.pull('origin', 'master', { '--rebase': 'true' });
422
```
423
424
### Options as an Array
0 commit comments