
Install dependencies:
```bash
make install
```
> **Note:** If `make` is not available on your system, you can run the underlying command directly:
> `pip install -e ".[dev]"`
> See the [Makefile](https://github.com/Nayjest/Gito/blob/main/Makefile) for all available commands.
Format code and check style:
```bash
make black
make cs
```
Run tests:
```bash
pytest
```