Crates.io | gitprompt-rs |
lib.rs | gitprompt-rs |
version | |
source | src |
created_at | 2018-12-29 09:01:23.764621+00 |
updated_at | 2024-12-25 20:39:15.864959+00 |
description | A very simple Git prompt |
homepage | |
repository | https://github.com/9ary/gitprompt-rs |
max_upload_size | |
id | 104368 |
Cargo.toml error: | TOML parse error at line 18, column 1 | 18 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
A very simple Git prompt written in Rust
Just add $(gitprompt-rs)
to your shell prompt. Make sure you use single quotes
'
or escape the $
to prevent early expansion.
Zsh additionally requires setopt promptsubst
to make this work.
You most likely want to let your shell know that the color escape sequences are
not actually visible so it will calculate the length correctly. Pass bash
for
Bash or zsh
for Zsh.
This is not required for fish.
The prompt looks like this: (master↑4↓7|+2~3-5x6•8)
. The information on
display is as follows:
master
: name of the current branch, :HEAD
in detached head mode↑
: number of commits ahead of remote↓
: number of commits behind remote+
: untracked (new) files~
: modified files-
: deleted filesx
: merge conflicts•
: staged changes[!TIP]
git status
can be pretty slow on large repositories. By default, gitprompt-rs forces scanning for all untracked files. This can be overridden by setting the Git optiongitprompt-rs.showUntrackedFiles
, which accepts the same values asstatus.showUntrackedFiles
, for a huge speedup (475ms -> 45ms in nixpkgs on my machine).
cargo install --path .
.cargo install gitprompt-rs
nix run github:9ary/gitprompt-rs
The flake exports an overlay which is the recommended way to consume git HEAD.