An open API service indexing awesome lists of open source software.

https://github.com/luftywiranda13/g-status

Get the change between index (or staging-area) and working tree of a `git` repository
https://github.com/luftywiranda13/g-status

git parse staged staging staging-area status working-directory working-tree

Last synced: 16 days ago
JSON representation

Get the change between index (or staging-area) and working tree of a `git` repository

Awesome Lists containing this project

README

        

# g-status

> Get the change between index (or staging-area) and working directory of a `git` repository

[![Package Version](https://img.shields.io/npm/v/g-status.svg?style=flat-square)](https://www.npmjs.com/package/g-status)
[![Downloads Status](https://img.shields.io/npm/dm/g-status.svg?style=flat-square)](https://npm-stat.com/charts.html?package=g-status&from=2016-04-01)
[![Build Status: Linux](https://img.shields.io/travis/luftywiranda13/g-status/master.svg?style=flat-square)](https://travis-ci.org/luftywiranda13/g-status)
[![Coverage Status](https://img.shields.io/codecov/c/github/luftywiranda13/g-status/master.svg?style=flat-square)](https://codecov.io/gh/luftywiranda13/g-status)

Think of `git status` or `git status --porcelain`, but returns a _ready-to-consume_ result.

## Why

* Maintained
* Accepts simple [wildcard matching](https://github.com/sindresorhus/matcher) patterns
* Promise API
* Ability to get specific results based on status codes
* Knows which files are partially/fully-staged

## Installation

```sh
npm install g-status
```

## Usage

```sh
$ git status --porcelain

A .travis.yml # fully-staged
MM index.js # partially-staged
M readme.md # unstaged
```

```js
const gStatus = require('g-status');

gStatus().then(res => {
console.log(res);
/*
[
{ path: '.travis.yml', index: 'A', workingTree: ' ' },
{ path: 'index.js', index: 'M', workingTree: 'M' },
{ path: 'readme.md', index: ' ', workingTree: 'M' }
]
*/
});

gStatus({ path: ['!*.js', '!*.md'] }).then(res => {
console.log(res);
//=> [{ path: '.travis.yml', index: 'A', workingTree: ' ' }]
});

// Files marked as `Modified` or `Added` in the staging area,
gStatus({ index: 'MA' }).then(res => {
console.log(res);
/*
[
{ path: '.travis.yml', index: 'A', workingTree: ' ' },
{ path: 'index.js', index: 'M', workingTree: 'M' },
]
*/
});

// Files that arenʼt changed in the working tree
gStatus({ workingTree: ' ' }).then(res => {
console.log(res);
//=> [{ path: '.travis.yml', index: 'A', workingTree: ' ' }]
});

// Files that are marked as `Modified` both in staging area and working tree
gStatus({ index: 'M', workingTree: 'M' }).then(res => {
console.log(res);
//=> [{ path: 'index.js', index: 'M', workingTree: 'M' }]
});
```

See the [tests](https://github.com/luftywiranda13/g-status/blob/master/test.js) for more usage examples and expected matches.

## API

### gStatus([options])

Returns `Promise<{ path: string, index: string, workingTree: string }[]>`.

#### options

Type: `Object`

##### cwd

Type: `string`

Default: `process.cwd()`

Current working directory.

##### path

Type: `string` | `string[]`

Default: `*`

Use `*` to match zero or more characters. A pattern starting with `!` will be negated.

##### index

Type: `string`

Default: `*`

String of `git` status codes of the index/staging-area, See [Short Format](https://git-scm.com/docs/git-status#_short_format).

One difference is that `*` will match all value here.

##### workingTree

Type: `string`

Default: `*`

String of `git` status codes of the working tree, See [Short Format](https://git-scm.com/docs/git-status#_short_format).

One difference is that `*` will match all value here.

## Related

* [simple-git](https://github.com/steveukx/git-js) – Simple git interface for Node.js
* [staged-git-files](https://github.com/mcwhittemore/staged-git-files) – Abandoned, the latest commit was 3 years ago

## License

MIT © [Lufty Wiranda](https://www.luftywiranda.com)