idgit 0.0.1

A TUI for git inspired by magit
Documentation
---
source: tests/test.rs
expression: repo.uncommitted_files()?

---
[
    Deleted(
        File(
            "deleted.txt",
        ),
    ),
    Ignored(
        File(
            "example.ignored",
        ),
    ),
    Untracked(
        File(
            "example_dir/nested.txt",
        ),
    ),
    Modified {
        old: File(
            "foo.txt",
        ),
        new: File(
            "foo.txt",
        ),
    },
    Untracked(
        File(
            "qux.txt",
        ),
    ),
    Renamed {
        old: File(
            "renamed",
        ),
        new: File(
            "renamed_to",
        ),
    },
    Added(
        File(
            "staged.txt",
        ),
    ),
]