Skip to content

プロンプトに git のブランチ名などを表示する

Updated:

参考

Starshipでgitのブランチ名を表示できる。個人的にはStashipが好み。

Starship でプロンプトをカスタマイズする

手順(zsh)

1. ファイルのダウンロード

https://github.com/git/git/tree/master/contrib/completion からファイルをダウンロードする。

curl -o ~/.git-prompt.sh https://raw.githubusercontent.com/git/git/master/contrib/completion/git-prompt.sh

2. 設定

~/.zshrc に次の内容を記載する。

source ~/.git-prompt.sh

setopt PROMPT_SUBST ; PS1='[%n@%m %c$(__git_ps1 " (%s)")]\$ '

GIT_PS1_SHOWDIRTYSTATE=true
GIT_PS1_SHOWSTASHSTATE=true
GIT_PS1_SHOWUNTRACKEDFILES=true
GIT_PS1_SHOWUPSTREAM=auto

手順(bash)

1. ファイルのダウンロード

https://github.com/git/git/tree/master/contrib/completion からファイルをダウンロードする。

curl -o ~/.git-prompt.sh https://raw.githubusercontent.com/git/git/master/contrib/completion/git-prompt.sh

2. 設定

~/.bashrc に次の内容を記載する。

source ~/.git-prompt.sh

PS1='[\u@\h \W$(__git_ps1 " (%s)")]\$ '

GIT_PS1_SHOWDIRTYSTATE=true
GIT_PS1_SHOWSTASHSTATE=true
GIT_PS1_SHOWUNTRACKEDFILES=true
GIT_PS1_SHOWUPSTREAM=auto