├── .gitattributes ├── .github └── workflows │ ├── release.yml │ └── test.yml ├── .gitignore ├── changelog.md ├── fugitive.nimble ├── license ├── readme.md └── src ├── fugitive.nim ├── fugitive.nim.cfg └── fugitivepkg ├── base.nim ├── commands ├── alias.nim ├── changelog.nim ├── config.nim ├── install.nim ├── lock.nim ├── mirror.nim ├── open.nim ├── profile.nim ├── pull_request.nim ├── release.nim ├── scrap.nim ├── summary.nim ├── undo.nim ├── uninstall.nim ├── unlock.nim └── unstage.nim ├── common ├── cli.nim ├── columnize.nim ├── configfile.nim ├── humanize.nim └── util.nim ├── constants.nim ├── github.nim └── types.nim /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/.gitignore -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/changelog.md -------------------------------------------------------------------------------- /fugitive.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/fugitive.nimble -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/license -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/readme.md -------------------------------------------------------------------------------- /src/fugitive.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitive.nim -------------------------------------------------------------------------------- /src/fugitive.nim.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitive.nim.cfg -------------------------------------------------------------------------------- /src/fugitivepkg/base.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/base.nim -------------------------------------------------------------------------------- /src/fugitivepkg/commands/alias.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/commands/alias.nim -------------------------------------------------------------------------------- /src/fugitivepkg/commands/changelog.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/commands/changelog.nim -------------------------------------------------------------------------------- /src/fugitivepkg/commands/config.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/commands/config.nim -------------------------------------------------------------------------------- /src/fugitivepkg/commands/install.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/commands/install.nim -------------------------------------------------------------------------------- /src/fugitivepkg/commands/lock.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/commands/lock.nim -------------------------------------------------------------------------------- /src/fugitivepkg/commands/mirror.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/commands/mirror.nim -------------------------------------------------------------------------------- /src/fugitivepkg/commands/open.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/commands/open.nim -------------------------------------------------------------------------------- /src/fugitivepkg/commands/profile.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/commands/profile.nim -------------------------------------------------------------------------------- /src/fugitivepkg/commands/pull_request.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/commands/pull_request.nim -------------------------------------------------------------------------------- /src/fugitivepkg/commands/release.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/commands/release.nim -------------------------------------------------------------------------------- /src/fugitivepkg/commands/scrap.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/commands/scrap.nim -------------------------------------------------------------------------------- /src/fugitivepkg/commands/summary.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/commands/summary.nim -------------------------------------------------------------------------------- /src/fugitivepkg/commands/undo.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/commands/undo.nim -------------------------------------------------------------------------------- /src/fugitivepkg/commands/uninstall.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/commands/uninstall.nim -------------------------------------------------------------------------------- /src/fugitivepkg/commands/unlock.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/commands/unlock.nim -------------------------------------------------------------------------------- /src/fugitivepkg/commands/unstage.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/commands/unstage.nim -------------------------------------------------------------------------------- /src/fugitivepkg/common/cli.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/common/cli.nim -------------------------------------------------------------------------------- /src/fugitivepkg/common/columnize.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/common/columnize.nim -------------------------------------------------------------------------------- /src/fugitivepkg/common/configfile.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/common/configfile.nim -------------------------------------------------------------------------------- /src/fugitivepkg/common/humanize.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/common/humanize.nim -------------------------------------------------------------------------------- /src/fugitivepkg/common/util.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/common/util.nim -------------------------------------------------------------------------------- /src/fugitivepkg/constants.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/constants.nim -------------------------------------------------------------------------------- /src/fugitivepkg/github.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/github.nim -------------------------------------------------------------------------------- /src/fugitivepkg/types.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/haltcase/fugitive/HEAD/src/fugitivepkg/types.nim --------------------------------------------------------------------------------