LoginSignup
11
10

More than 5 years have passed since last update.

gitバージョンアップで -bash: __git_ps1: コマンドが見つかりません と言われたとき

Posted at

gitバージョンアップで -bash: __git_ps1: コマンドが見つかりません と言われたとき

git-prompt.sh を持ってきて

$ mkdir -p ~/local/etc/bash_completion.d/
$ cd ~/local/etc/bash_completion.d/
$ wget https://raw.github.com/git/git/master/contrib/completion/git-prompt.sh

読み込む

.bashrc に以下を追加

if [ -f $HOME/local/etc/bash_completion.d/git-prompt.sh ]; then
    source $HOME/local/etc/bash_completion.d/git-prompt.sh
fi
11
10
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
11
10