新しいSnow LeopardのインストールにMacPortsを使用してgitをインストールしました。MacPortsが.dmgイメージからインストールされた後、これらはTerminal.appのコマンドになります。
sudo port selfupdate
sudo port install git-core +bash_completion
SVNリポジトリとドキュメントからのプルのサポートも必要な場合は、2行目の代わりにこれを使用します。
sudo port install git-core +bash_completion +doc +svn
次に、以下を〜/ .profileまたは〜/ .bash_profileに追加します。
#MacPorts Bashシェルコマンド補完
if [-f / opt / local / etc / bash_completion]; それから
。/ opt / local / etc / bash_completion
fi
または、Mountain Lionのバージョン2.1.2以降のMacPortsの場合:
#MacPorts Bashシェルコマンド補完
if [-f /opt/local/etc/profile.d/bash_completion.sh]; それから
。/opt/local/etc/profile.d/bash_completion.sh
fi
またはgitの新しいバージョンを搭載したMacPortsの場合:
if [-f /opt/local/share/git-core/git-prompt.sh]; それから
。/opt/local/share/git-core/git-prompt.sh
fi
注:bash_completion.shにはbash 4.1以降が必要です。完了しない場合echo $BASH_VERSION
は、それが問題かどうかを確認してください。その場合は、入力してMacPorts bashを入力しbash
、もう一度git completionを試してください。