facebook twitter hatena line email

「Mac/インストール/git」の版間の差分

提供: 初心者エンジニアの簡易メモ
移動: 案内検索
行8: 行8:
 
修正
 
修正
 
  xcode-select --install
 
  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

2017年2月21日 (火) 19:46時点における版

インストール

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