Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mikesmithgh/git-prompt-string

📍A shell agnostic git prompt written in Go
https://github.com/mikesmithgh/git-prompt-string

bash bash-prompt fish fish-prompt git go golang oh-my-zsh powershell shell-prompt starship zsh zsh-prompt

Last synced: 4 months ago
JSON representation

📍A shell agnostic git prompt written in Go

Awesome Lists containing this project

README

        

# 📍 git-prompt-string

git-prompt-string is a shell agnostic git prompt written in Go. git-prompt-string provides
information about the current git branch and is inspired by
[git-prompt.sh](https://github.com/git/git/blob/master/contrib/completion/git-prompt.sh).

[![go](https://img.shields.io/static/v1?style=flat-square&label=&message=v1.22.0&logo=go&labelColor=282828&logoColor=9dbad4&color=9dbad4)](https://go.dev/)
[![semantic-release: angular](https://img.shields.io/static/v1?style=flat-square&label=semantic-release&message=angular&logo=semantic-release&labelColor=282828&logoColor=d8869b&color=8f3f71)](https://github.com/semantic-release/semantic-release)

![git-prompt-string](https://github.com/mikesmithgh/git-prompt-string/assets/10135646/219854b3-3551-4f4d-8361-175a3eeab3b1)

> [!NOTE]\
> Looking for [bgps](https://github.com/mikesmithgh/git-prompt-string/tree/v0.0.1)? git-prompt-string is the successor of bgps.
> bgps is still available on the tag [v0.0.1](https://github.com/mikesmithgh/git-prompt-string/tree/v0.0.1)
>

- 📦 [Installation](#-installation)
- [homebrew tap](#homebrew-tap)
- [go install](#go-install)
- [manually](#manually)
- 🛠️ [Setup](#-setup)
- [Prompt configuration](#prompt-configuration)
- [bash](#bash)
- [zsh](#zsh)
- [fish](#fish)
- [powershell](#powershell)
- [nushell](#nushell)
- [starship](#starship)
- [git-prompt-string configuration](#git-prompt-string-configuration)
- [Nerd Font](#nerd-font)
- [Configuration file](#configuration-file)
- [Configuration options](#configuration-options)
- [Specifying colors](#specifying-colors)
- [Default configuration](#default-configuration)
- 📌 [Alternatives](#-alternatives)

## 📦 Installation

### homebrew tap

```sh
brew install mikesmithgh/homebrew-git-prompt-string/git-prompt-string
```

### go install

```sh
go install github.com/mikesmithgh/git-prompt-string@latest
```

### manually
1. Download pre-compiled binary from [releases](https://github.com/mikesmithgh/git-prompt-string/releases/latest).
2. If you are on MacOS, run `xattr -c git-prompt-string*.tar.gz` to avoid "unknown developer" warning
3. Extract the `tar.gz` or `zip` file
4. Move `git-prompt-string` to a file location that is in your `PATH` environment variable
5. Run `git-prompt-string --version`

#### Example manually downloading via curl on MacOS

```sh
curl -L -o git-prompt-string.tar.gz https://github.com/mikesmithgh/git-prompt-string/releases/latest/download/git-prompt-string_Darwin_arm64.tar.gz
xattr -c git-prompt-string.tar.gz
tar xzvf git-prompt-string.tar.gz
mv git-prompt-string "$HOME/bin" # replace with your preferred directory that is in PATH
```

## 🛠️ Setup

### Prompt configuration

See the following for examples for a reference on how you could add git-prompt-string to your prompt.

#### [bash](https://www.gnu.org/software/bash/)

```sh
PS1='\[\n\e[0;33m\w\e[0m$(git-prompt-string)\n\e[0;32mbash \e[0;36m\$\e[0m \]'
```

![bash](https://github.com/mikesmithgh/git-prompt-string/assets/10135646/0cd23b15-e12b-4ae6-a51e-20d2b38ea7a0)

#### [zsh](https://www.zsh.org/)

```sh
autoload -U colors && colors
setopt PROMPT_SUBST
PROMPT=$'\n%{$fg[yellow]%}%~%{$reset_color%}$(git-prompt-string)\n%{$fg[green]%}zsh %{$fg[cyan]%}%#%{$reset_color%} '
```

![zsh](https://github.com/mikesmithgh/git-prompt-string/assets/10135646/4ec33fa3-6fc9-4c14-8f4a-7d1daeaeaa3e)

#### [fish](https://fishshell.com/)

```fish
set -U fish_prompt_pwd_dir_length 0
function fish_prompt
set -l symbol ' $ '
if fish_is_root_user
set symbol ' # '
end

printf '\n%s%s%s%s\n%s%sfish%s%s%s' \
(set_color yellow) (prompt_pwd) (set_color normal) (git-prompt-string) \
(set_color green) (set_color blue) (set_color cyan) $symbol (set_color normal)
end
```

![fish](https://github.com/mikesmithgh/git-prompt-string/assets/10135646/f4ed0600-e8cd-464f-98bf-5064f00d88d5)

#### [powershell](https://learn.microsoft.com/en-us/powershell/)

```powershell
function prompt {
$ESC = [char]27
$w = $pwd.Path.Replace($env:USER_PROFILE, "~").Replace($env:HOME, "~")
return "`n$ESC[0;33m$w$ESC[0m$(git-prompt-string)`n$ESC[0;32mPS $ESC[0;36m>$ESC[0m "
}
```

![pwsh](https://github.com/mikesmithgh/git-prompt-string/assets/10135646/bd712f7a-1ba9-4907-b98a-b8ee35640a50)

#### [nushell](https://www.nushell.sh/)

```nu
$env.PROMPT_INDICATOR = { ||
$" (ansi cyan)>(ansi reset) "
}
$env.PROMPT_COMMAND = { ||
$"\n(ansi yellow)($env.PWD | str replace $"($env.HOME)" '~')(git-prompt-string)\n(ansi green)nushell"
}
$env.PROMPT_COMMAND_RIGHT = ""
```

![nu](https://github.com/mikesmithgh/git-prompt-string/assets/10135646/d75dfeed-cd26-4f87-9475-9288df7247e1)

#### [starship](https://starship.rs/config/)

Starship will hide custom commands that fail with a non-zero exit code. To prevent this, add `|| :`
or your shell's equvilent command to always return a zero exit code. It is recommended to always
return successfully so that error messages are displayed.

```toml
"$schema" = 'https://starship.rs/config-schema.json'

format = """
$directory\
${custom.git-prompt-string}\
$line_break\
[starship](green) \
[\\$](cyan) \
"""

[custom.git-prompt-string]
command = "git-prompt-string || :"
when = true

[directory]
home_symbol='~'
format = '[$path]($style)'
truncation_length = 0
truncate_to_repo = false
style = "yellow"
use_logical_path = true
```

![starship](https://github.com/mikesmithgh/git-prompt-string/assets/10135646/6a3d1899-7a81-4dbc-82d4-d6b60fc8513f)

### git-prompt-string configuration

#### Nerd Font

By default, the powerline icon `` is used as a prefix in the prompt. It is recommended to use a [Nerd Font](https://www.nerdfonts.com/)
to properly display the `` (nf-pl-branch) icon. See https://www.nerdfonts.com/ to download a Nerd Font. If you
do not want this symbol, replace the prompt prefix with " ". For example, add the following to you git-prompt-string
configuration.

```toml
prompt_prefix = ' '
```

#### Configuration file

git-prompt-string will first check if the `--config` option was passed as an argument. If
`--config` is set, the filepath defined in the value will be used as the configuration
file.

If `--config` is not set, then git-prompt-string will check if the environment variable
`$GIT_PROMPT_STRING_CONFIG` is set. If `$GIT_PROMPT_STRING_CONFIG` is set, the
filepath defined in the value will be used as the configuration file.

If `$GIT_PROMPT_STRING_CONFIG` is not set, then git-prompt-string will check if the environment
variable `$XDG_CONFIG_HOME` is set. If `$XDG_CONFIG_HOME` is set, the directory defined in then
value will be used as the base directory for git-prompt-string configurations. See
[XDG Base Directory Specification](https://specifications.freedesktop.org/basedir-spec/basedir-spec-latest.html)
for more information on XDG environment variables.

If `$XDG_CONFIG_HOME` is not set, then `~/.config` and `~/AppData/Local` will be used as the
base directory for Unix and Windows, respectively.

The file defined at `git-prompt-string/config.toml` in the base directory will be used to configure
git-prompt-string.

| OS | Base directory | Configuration file |
| :------ | :-------------- | :-------------------------------------------- |
| Unix | ~/.config | ~/.config/git-prompt-string/config.toml |
| Windows | ~/AppData/Local | ~/AppData/Local/git-prompt-string/config.toml |

If the configuration filepath is set to the special value of `NONE`, then all user configurations will
be ignored. For example, `git-prompt-string --config=NONE` or `GIT_PROMPT_STRING_CONFIG=NONE git-prompt-string`
will use the default configuration values defined by git-prompt-string.

#### Configuration options

The following configuration options are available in either as a command-line argument or TOML key.

```text
--ahead-format or ahead_format
The format used to indicate the number of commits ahead of the
remote branch. The %v verb represents the number of commits
ahead. One %v verb is required. (default "↑[%v]")

--behind-format or behind_format
The format used to indicate the number of commits behind the
remote branch. The %v verb represents the number of commits
behind. One %v verb is required. (default "↓[%v]")

--color-clean or color_clean
The color of the prompt when the working directory is clean.
(default "green")

--color-delta or color_delta
The color of the prompt when the local branch is ahead, behind,
or has diverged from the remote branch. (default "yellow")

--color-dirty or color_dirty
The color of the prompt when the working directory has changes
that have not yet been committed. (default "red")

--color-disabled or color_disabled
Disable all colors in the color-disabled

--color-merging or color_merging
The color of the prompt during a merge, rebase, cherry-pick,
revert, or bisect. (default "blue")

--color-no-upstream or color_no_upstream
The color of the prompt when there is no remote upstream branch.
(default "bright-black")

--color-untracked or color_untracked
The color of the prompt when there are untracked files in the
working directory. (default "magenta")

--diverged-format or diverged_format
The format used to indicate the number of commits diverged
from the remote branch. The first %v verb represents the number
of commits ahead of the remote branch. The second %v verb
represents the number of commits behind the remote branch. Two
%v verbs are required. (default "↕ ↑[%v] ↓[%v]")

--no-upstream-remote-format or no_upstream_remote_format
The format used to indicate when there is no remote upstream,
but there is still a remote branch configured. The first %v
represents the remote repository. The second %v represents the
remote branch. Two %v are required. (default " → %v/%v")

--prompt-prefix or prompt_prefix
A prefix that is added to the beginning of the prompt. The
powerline icon  is used be default. It is recommended to
use a Nerd Font to properly display the  (nf-pl-branch) icon.
See https://www.nerdfonts.com/ to download a Nerd Font. If you
do not want this symbol, replace the prompt prefix with " ".
\ue0a0 is the unicode representation of . (default " \ue0a0 ")

--prompt-suffix or prompt_suffix
A suffix that is added to the end of the prompt.

--json
Output the results in JSON format. The keys of the JSON result are
branchInfo, branchStatus, color, promptPrefix, and promptSuffix.

Example:
{
"branchInfo": "main",
"branchStatus": "",
"color": "green",
"promptPrefix": "  ",
"promptSuffix": ""
}
```

#### Specifying colors

A color value in the configuration must be either a single color or multiple colors
separated by white space.

Valid formats for a color are:
- `color`
- fg:`color`
- bg:`color`
- #ffffff
- #fg:ffffff
- #bg:ffffff
- `reset`

The value `reset` will clear all text formatting and reset the color to the default value.
Colors starting with `bg` or `#bg` are background colors. All other formats are considered
foreground colors. i.e., `red` is equivalent to `fg:reg`.

Colors starting with `#` are considered a hex color code and must have 6 digits.

Valid colors are defined in the following table.

| Color | Code |
| :------------- | :-- |
| black | 0 |
| red | 1 |
| green | 2 |
| yellow | 3 |
| blue | 4 |
| magenta | 5 |
| cyan | 6 |
| white | 7 |
| bright-black | 8 |
| bright-red | 9 |
| bright-green | 10 |
| bright-yellow | 11 |
| bright-blue | 12 |
| bright-magenta | 13 |
| bright-cyan | 14 |
| bright-white | 15 |

The following are examples of valid color configurations:

```toml
color_clean='#e5ee04'
color_no_upstream="reset fg:black bg:white"
color_dirty="bg:#b30559"
color_delta="fg:#fcb728"
color_untracked="fg:#ff0000 bg:#16f2aa"
color_merging="bg:#ccccff magenta"
```

#### Default configuration

```toml
prompt_prefix = '  '
prompt_suffix = ''
ahead_format = '↑[%v]'
behind_format = '↓[%v]'
diverged_format = '↕ ↑[%v] ↓[%v]'
no_upstream_remote_format = ' → %v/%v'
color_disabled = false
color_clean = 'green'
color_delta = 'yellow'
color_dirty = 'red'
color_untracked = 'magenta'
color_no_upstream = 'bright-black'
color_merging = 'blue'
```

## 📌 Alternatives
- [git-prompt.sh](https://github.com/git/git/blob/master/contrib/completion/git-prompt.sh) - bash/zsh git prompt support
- [bash-git-prompt](https://github.com/magicmonty/bash-git-prompt) - An informative and fancy bash prompt for Git users
- [zsh-git-prompt](https://github.com/olivierverdier/zsh-git-prompt) - Informative git prompt for zsh
- [starship](https://starship.rs/) - The minimal, blazing-fast, and infinitely customizable prompt for any shell!
- You can integrate git-prompt-string with starship or use starship's builtin git [configurations](https://starship.rs/config/).
- [ohmyzsh](https://ohmyz.sh/) - 🙃 A delightful community-driven (with 2,200+ contributors) framework for managing your zsh configuration.
- ohmyzsh offers git [plugins](https://github.com/ohmyzsh/ohmyzsh/wiki/Plugins) to customize the prompt
- [powerlevel10k](https://github.com/romkatv/powerlevel10k) - A Zsh theme
- powerlevel10k offers [git status](https://github.com/romkatv/powerlevel10k?tab=readme-ov-file#what-do-different-symbols-in-git-status-mean) integration into the prompt
- [oh-my-posh](https://ohmyposh.dev/) - The most customisable and low-latency cross platform/shell prompt renderer
- oh-my-posh offers a [git segment](https://ohmyposh.dev/docs/segments/git) to customize the prompt
- [fish_git_prompt](https://fishshell.com/docs/current/cmds/fish_git_prompt.html) - Fish has builtin git support to display information about the current git repository, if any.
- [gitprompt](https://github.com/akupila/gitprompt) - a configurable, fast and zero-dependencies* way of getting the current git status to be displayed in the PROMPT.