gaf

that's how dogs bark in russian

This terminal program will let you stage or unstage different types of git changes.

For example, you can gaf stage new to stage only the newly created files. Or gaf unstaged modified to unstage staged modifications.

Or, you could use gaf unstage renamed to unstage all renames.

The way that specific command works is that it unstages both the deletion of the old file and the addition of the new one.

Overall, gaf works by parsing the output of git status -s.

Usage

``` Usage: gaf

Commands: stage

unstage

help Print this message or the help of the given subcommand(s)

Options: -h, --help Print help ```

gaf stage

``` Usage: gaf stage

Arguments: [possible values: new, modified, deleted]

Options: -h, --help Print help ```

gaf unstage

``` Usage: gaf unstage

Arguments: [possible values: added, modified, renamed, deleted]

Options: -h, --help Print help ```

Installation

With binstall cargo binstall -y gaf

Compile from source cargo install gaf