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: simple-git/CHANGELOG.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -356,8 +356,8 @@
356
356
357
357
### Bug Fixes
358
358
359
-
- add types and tests for the documented .exec api ([#631](https://www.github.com/steveukx/git-js/issues/631)) ([c9207da](https://www.github.com/steveukx/git-js/commit/c9207da1d8196193b580c5d4fed6101e5c4d4ff8))
360
-
- add types and tests for the documented `.exec`api ([c9207da](https://www.github.com/steveukx/git-js/commit/c9207da1d8196193b580c5d4fed6101e5c4d4ff8))
359
+
- add types and tests for the documented .exec API ([#631](https://www.github.com/steveukx/git-js/issues/631)) ([c9207da](https://www.github.com/steveukx/git-js/commit/c9207da1d8196193b580c5d4fed6101e5c4d4ff8))
360
+
- add types and tests for the documented `.exec`API ([c9207da](https://www.github.com/steveukx/git-js/commit/c9207da1d8196193b580c5d4fed6101e5c4d4ff8))
361
361
- updates the documentation for `mergeFromTo` to more closely represent its functionality (see [#50](https://www.github.com/steveukx/git-js/issues/50) for the original requirement). ([dd2244e](https://www.github.com/steveukx/git-js/commit/dd2244e1bd84911668b0d23184afb736dc5386b8))
Copy file name to clipboardExpand all lines: simple-git/readme.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -378,7 +378,7 @@ in v2 (deprecation notices were logged to `stdout` as `console.warn` in v2).
378
378
## git show
379
379
380
380
-`.show(options)` show various types of objects for example the file content at a certain commit. `options` is the single value string or any [options](#how-to-specify-options) supported by the [git show](https://git-scm.com/docs/git-show) command.
381
-
-`.showBuffer(options)` same as the `.show`api, but returns the Buffer content directly to allow for showing binary file content.
381
+
-`.showBuffer(options)` same as the `.show`API, but returns the Buffer content directly to allow for showing binary file content.
382
382
383
383
## git status
384
384
@@ -634,7 +634,7 @@ the full list of verbose logging options to use with the
634
634
There are a few potential reasons:
635
635
636
636
-`git` isn't available as a binary for the user running the main `node` process, custom paths to the binary can be used
637
-
with the `.customBinary(...)`api option.
637
+
with the `.customBinary(...)`API option.
638
638
639
639
- the working directory passed in to the main `simple-git` function isn't accessible, check it is read/write accessible
640
640
by the user running the `node` process. This library uses
@@ -684,7 +684,7 @@ from `core-js` - see [Legacy Node Versions](https://github.com/steveukx/git-js/b
684
684
685
685
### using a pathspec to limit the scope of the task
686
686
687
-
If the `simple-git`api doesn't explicitly limit the scope of the task being run (ie: `git.add()` requires the files to
687
+
If the `simple-git`API doesn't explicitly limit the scope of the task being run (ie: `git.add()` requires the files to
688
688
be added, but `git.status()` will run against the entire repo), add a `pathspec` to the command using trailing options:
0 commit comments