web-dev-qa-db-ja.com

ZshでGitブランチを示すプロンプトを取得するには

.zshrcでプロンプトが失敗したため、次のコードを個別に実行します。これは、明らかに__git_ps1というプログラムがないことを示唆しています。 MacPortsにはありません。

#1

Prompt="$(__git_ps1 " \[\033[1;32m\] (%s)\[\033[0m\]")\$"$

#2

Prompt="$(__git_ps1 " (%s)")\$"$

# Get the name of the branch we are on
git_Prompt_info() {
  branch_Prompt=$(__git_ps1)
  if [ -n "$branch_Prompt" ]; then
    status_icon=$(git_status)
    echo $branch_Prompt $status_icon
  fi
}

# Show character if changes are pending
git_status() {
  if current_git_status=$(git status | grep 'added to commit' 2> /dev/null); then
    echo "☠"
  fi
}
autoload -U colors
colors
setopt Prompt_subst
Prompt='
%~%{$fg_bold[black]%}$(git_Prompt_info)
→ %{$reset_color%}'

Gitブランチの名前を示すプロンプトを取得するにはどうすればよいですか?

__git_ps1はgit-completion.bashからのものです。 zshでは、おそらく現在のディレクトリgitブランチを決定するための独自の関数を提供する必要があります。 zshには ブログ投稿 について git Prompt がかなりあります。

あなただけが必要です:

  • ブランチ名を提供する関数
  • プロンプト(コマンド)置換を有効にする
  • プロンプトに関数を追加します

例えば

git_Prompt() {
 ref=$(git symbolic-ref HEAD | cut -d'/' -f3)
 echo $ref
}
setopt Prompt_subst
PS1=$(git_Prompt)%#
autoload -U promptinit
promptinit

更新:git_Prompt()の代わりにzsh vcs_infoモジュールを使用

setopt Prompt_subst
autoload -Uz vcs_info
zstyle ':vcs_info:*' actionformats \
    '%F{5}(%f%s%F{5})%F{3}-%F{5}[%F{2}%b%F{3}|%F{1}%a%F{5}]%f '
zstyle ':vcs_info:*' formats       \
    '%F{5}(%f%s%F{5})%F{3}-%F{5}[%F{2}%b%F{5}]%f '
zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b%F{1}:%F{3}%r'

zstyle ':vcs_info:*' enable git cvs svn

# or use pre_cmd, see man zshcontrib
vcs_info_wrapper() {
  vcs_info
  if [ -n "$vcs_info_msg_0_" ]; then
    echo "%{$fg[grey]%}${vcs_info_msg_0_}%{$reset_color%}$del"
  fi
}
RPROMPT=$'$(vcs_info_wrapper)'
63
ko-dos

Zshの拡張gitプロンプト: zsh-git-Prompt

alt text

32
Olivier Verdier

ko-dosの答えは素晴らしいですが、私は彼が使用しているプロンプトよりも少しGitに対応したプロンプトを好みます。具体的には、プロンプト自体のステージング、ステージング、およびトラックされていないファイル通知が好きです。彼の答えと zsh vcs_infoの例 を使用して、次のことを思いつきました。

setopt Prompt_subst
autoload -Uz vcs_info
zstyle ':vcs_info:*' stagedstr 'M' 
zstyle ':vcs_info:*' unstagedstr 'M' 
zstyle ':vcs_info:*' check-for-changes true
zstyle ':vcs_info:*' actionformats '%F{5}[%F{2}%b%F{3}|%F{1}%a%F{5}]%f '
zstyle ':vcs_info:*' formats \
  '%F{5}[%F{2}%b%F{5}] %F{2}%c%F{3}%u%f'
zstyle ':vcs_info:git*+set-message:*' hooks git-untracked
zstyle ':vcs_info:*' enable git 
+vi-git-untracked() {
  if [[ $(git rev-parse --is-inside-work-tree 2> /dev/null) == 'true' ]] && \
  [[ $(git ls-files --other --directory --exclude-standard | sed q | wc -l | tr -d ' ') == 1 ]] ; then
  hook_com[unstaged]+='%F{1}??%f'
fi
}


precmd () { vcs_info }
Prompt='%F{5}[%F{2}%n%F{5}] %F{3}%3~ ${vcs_info_msg_0_} %f%# '

これは、git status -s.gitconfigファイルで設定可能)の色付き出力を模倣するプロンプトを作成します。おそらくここで写真が最も役に立ちます:

Prompt

git status -sとの比較:

enter image description here

色付けされた出力が気に入らない場合、または他の文字やプロンプトの構成が必要な場合は、上記のコードのstagedstrunstagedstr、およびhook_com[unstaged]の値を変更するだけです。

23
Christopher

これらの解決策の多くは、リターンキーをマッシュするときに遅いように思えたので、基本的かつ迅速なオプションを以下に示します。

_parse_git_branch() {
    git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/ (\1)/'
}

setopt Prompt_SUBST
Prompt='%9c%{%F{green}%}$(parse_git_branch)%{%F{none}%} $ '
_

次のようなプロンプトが表示されます:~/dev/project (feature-branch) $

1
Phil

リンクありがとうございます!

それらに基づいて次のプロンプトを作成しました

     # get the name of the branch we are on
     git_Prompt_info() { 
         git branch | awk '/^\*/ { print $2 }'
     }
     get_git_dirty() { 
       git diff --quiet || echo '*'
     }

     autoload -U colors
     colors     
     setopt Prompt_subst

     Prompt='%{$fg[blue]%}%c %{$fg_bold[red]%}$(git_Prompt_info)$(get_git_dirty)%{$fg[blue]%} $ %{$reset_color%}'                                           

     RPROMPT='%{$fg[green]%}%1(j.%j.)'        

改善を提案してください。

長い支店名が働いているので、私はちょうど私のものをやり直しました。これは、35文字を超える場合は省略記号で切り捨てられます。

parse_git_branch() {
    git_status="$(git status 2> /dev/null)"
    pattern="On branch ([^[:space:]]*)"
    if [[ ! ${git_status} =~ "(working (tree|directory) clean)" ]]; then
        state="*"
    fi
    if [[ ${git_status} =~ ${pattern} ]]; then
      branch=${match[1]}
      branch_cut=${branch:0:35}
      if (( ${#branch} > ${#branch_cut} )); then
          echo "(${branch_cut}…${state})"
      else
          echo "(${branch}${state})"
      fi
    fi
}

setopt Prompt_SUBST
Prompt='%{%F{blue}%}%9c%{%F{none}%}$(parse_git_branch)$'

(私はこのことを誇りに思っています。)

0
Dan Rosenstark