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: gaf
Commands: stage
unstage
help Print this message or the help of the given subcommand(s)
Options: -h, --help Print help ```
```
Usage: gaf stage
Arguments:
Options: -h, --help Print help ```
```
Usage: gaf unstage
Arguments:
Options: -h, --help Print help ```
With binstall
cargo binstall -y gaf
Compile from source
cargo install gaf