1
0
mirror of https://github.com/danog/gift.git synced 2024-11-26 20:04:47 +01:00

docs: added Repo#ls_files

This commit is contained in:
Luke Plaster 2016-07-06 15:23:38 +08:00 committed by GitHub
parent 63aac64604
commit 0c394739d6

View File

@ -145,8 +145,8 @@ Uses `--porcelain` to parse repository status in a way that is agnostic of syste
`options` is a string of any other options you'd like to pass to the status command. For example, the `-u` option will list each file in an untracked directory rather than simply listing the directory itself.
The callback receives `(err, status)`. See below for a definition of what `status` is.
### `Repo#merge(name, [options, ]callback)`
`git merge <name>`
### `Repo#ls_files([files, ]options, callback)`
List out the files in the index and working tree. Optionally filtered by a given array of `files` (paths or filenames).
### `Repo#config(callback)`
`git config` parsed as a simple, one-level object. The callback receives `(err, config)`.
@ -168,6 +168,9 @@ with an error, if one occurred.
### `Repo#delete_branch(delete, callback)`
Delete the branch `name`, and call the callback with an error, if one occurred.
### `Repo#merge(name, [options, ]callback)`
`git merge <name>`
### `Repo#tags(callback)`
Get a list of `Tag`s.