Skip to content

Commit

Permalink
Fix git().pull typo in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
zack committed Jan 24, 2023
1 parent d716d32 commit e554510
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions simple-git/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -415,10 +415,10 @@ pair will be included in the command string as `name=value`. For example:

```javascript
// results in 'git pull origin master --no-rebase'
git().pull('origin', 'master', { '--no-rebase': null });
git.pull('origin', 'master', { '--no-rebase': null });

// results in 'git pull origin master --rebase=true'
git().pull('origin', 'master', { '--rebase': 'true' });
git.pull('origin', 'master', { '--rebase': 'true' });
```

### Options as an Array
Expand Down

0 comments on commit e554510

Please sign in to comment.