├── .github └── workflows │ └── rust_ci.yaml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE.md ├── README.md ├── assets ├── banner.png ├── gt_ls_bench.png └── standards.png ├── justfile └── src ├── cli.rs ├── config.rs ├── constants.rs ├── ctx ├── actions.rs ├── fmt.rs ├── mod.rs └── stack_management.rs ├── errors.rs ├── git.rs ├── main.rs ├── subcommands ├── local │ ├── checkout.rs │ ├── config.rs │ ├── create.rs │ ├── delete.rs │ ├── log.rs │ ├── mod.rs │ ├── restack.rs │ ├── track.rs │ └── untrack.rs ├── mod.rs └── remote │ ├── mod.rs │ ├── status.rs │ ├── submit.rs │ └── sync.rs └── tree.rs /.github/workflows/rust_ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/.github/workflows/rust_ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/assets/banner.png -------------------------------------------------------------------------------- /assets/gt_ls_bench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/assets/gt_ls_bench.png -------------------------------------------------------------------------------- /assets/standards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/assets/standards.png -------------------------------------------------------------------------------- /justfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/justfile -------------------------------------------------------------------------------- /src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/cli.rs -------------------------------------------------------------------------------- /src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/config.rs -------------------------------------------------------------------------------- /src/constants.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/constants.rs -------------------------------------------------------------------------------- /src/ctx/actions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/ctx/actions.rs -------------------------------------------------------------------------------- /src/ctx/fmt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/ctx/fmt.rs -------------------------------------------------------------------------------- /src/ctx/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/ctx/mod.rs -------------------------------------------------------------------------------- /src/ctx/stack_management.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/ctx/stack_management.rs -------------------------------------------------------------------------------- /src/errors.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/errors.rs -------------------------------------------------------------------------------- /src/git.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/git.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/subcommands/local/checkout.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/subcommands/local/checkout.rs -------------------------------------------------------------------------------- /src/subcommands/local/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/subcommands/local/config.rs -------------------------------------------------------------------------------- /src/subcommands/local/create.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/subcommands/local/create.rs -------------------------------------------------------------------------------- /src/subcommands/local/delete.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/subcommands/local/delete.rs -------------------------------------------------------------------------------- /src/subcommands/local/log.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/subcommands/local/log.rs -------------------------------------------------------------------------------- /src/subcommands/local/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/subcommands/local/mod.rs -------------------------------------------------------------------------------- /src/subcommands/local/restack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/subcommands/local/restack.rs -------------------------------------------------------------------------------- /src/subcommands/local/track.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/subcommands/local/track.rs -------------------------------------------------------------------------------- /src/subcommands/local/untrack.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/subcommands/local/untrack.rs -------------------------------------------------------------------------------- /src/subcommands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/subcommands/mod.rs -------------------------------------------------------------------------------- /src/subcommands/remote/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/subcommands/remote/mod.rs -------------------------------------------------------------------------------- /src/subcommands/remote/status.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/subcommands/remote/status.rs -------------------------------------------------------------------------------- /src/subcommands/remote/submit.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/subcommands/remote/submit.rs -------------------------------------------------------------------------------- /src/subcommands/remote/sync.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/subcommands/remote/sync.rs -------------------------------------------------------------------------------- /src/tree.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clabby/st/HEAD/src/tree.rs --------------------------------------------------------------------------------