「Mac/インストール/git」の版間の差分
提供: 初心者エンジニアの簡易メモ
(→ターミナルにブランチ名表示2) |
(→ターミナルにブランチ名表示) |
||
行20: | 行20: | ||
export PS1='\[\033[32m\]\u@\h\[\033[00m\]:\[\033[34m\]\w\[\033[31m\]$(__git_ps1)\[\033[00m\]\n\$ ' | export PS1='\[\033[32m\]\u@\h\[\033[00m\]:\[\033[34m\]\w\[\033[31m\]$(__git_ps1)\[\033[00m\]\n\$ ' | ||
sh ~/.bashrc | sh ~/.bashrc | ||
+ | |||
+ | 反映前 | ||
+ | mac1-no-MacBook-Air:ssh mac1$ | ||
+ | 反映後 | ||
+ | mac1@mac1-no-MacBook-Air:/d/ssh (master) | ||
+ | $ | ||
==ターミナルにブランチ名表示(高機能版)== | ==ターミナルにブランチ名表示(高機能版)== |
2017年2月21日 (火) 21:51時点における版
インストール
brew install git
El Capitanにした時のエラー
エラー内容
xcrun: error: invalid active developer path (/Library/Developer/CommandLineTools), missing xcrun at: /Library/Developer/CommandLineTools/usr/bin/xcrun
修正
xcode-select --install
ターミナルにブランチ名表示
以下スクリプトがあるか確認
$ ls /usr/local/etc/bash_completion.d/ git-completion.bash git-prompt.sh
$ vi ~/.bashrc source /usr/local/etc/bash_completion.d/git-prompt.sh source /usr/local/etc/bash_completion.d/git-completion.bash GIT_PS1_SHOWDIRTYSTATE=true export PS1='\[\033[32m\]\u@\h\[\033[00m\]:\[\033[34m\]\w\[\033[31m\]$(__git_ps1)\[\033[00m\]\n\$ ' sh ~/.bashrc
反映前
mac1-no-MacBook-Air:ssh mac1$
反映後
mac1@mac1-no-MacBook-Air:/d/ssh (master) $
ターミナルにブランチ名表示(高機能版)
$ brew install zsh $ curl -L https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh | sh $ vi ~/.zshrc ZSH_THEME="ys" $ source ~/.zshrc vi ~/.bashrc source ~/.zshrc