Crates.io | git-radar-rs |
lib.rs | git-radar-rs |
version | 0.1.2 |
source | src |
created_at | 2024-05-19 09:18:42.150286 |
updated_at | 2024-05-21 05:58:24.230595 |
description | Rust version of git-radar or gitHUD |
homepage | |
repository | https://github.com/untoldwind/git-radar-rs |
max_upload_size | |
id | 1244805 |
size | 66,885 |
Rust version of git-radar or gitHUD
cargo install git-radar-rs
Note: By default git-radar-rs
compiles with support for libgit2
(via: https://github.com/rust-lang/git2-rs).
If this causes problems use:
cargo install --no-default-feature git-radar-rs
to install a version that uses the git
command-line (just like the original git-radar
)
Example for a simplistic bash-prompt:
export PS1="\W\$(git-radar-rs bash)\[\033[0m\]\$ "
Example for a simplistic zsh-prompt:
setopt PROMPT_SUBST
export PROMPT='%1d $(git-radar-rs zsh)$ '