Macにインストールしたもの

普通にインストール系

Google Japanese Input
Google Chrome
Dropbox
Skype
Adobe AIR
Firefox + SQLite Manager(Plugin)
AppClieaner
XtraFinder
mi
Eclipse (AnyEdit Plugin)
Android SDK
Microsoft Remote Desktop Connection Client for Mac

git関係

1) Xcode tools

https://developer.apple.com/downloads/index.action
Command Line Tools for Xcode - June 2012

2)Mac Ports

Linuxで言うところの wgetMac版。
portsを使用して次の git-core をインスト。

http://www.macports.org/
Download > Mac OS X Package (.pkg) installer
Lion > https://distfiles.macports.org/MacPorts/MacPorts-2.1.1-10.7-Lion.pkg

3) git-core

Terminalを起動して以下のコマンドを実行。

sudo port install git-core
メモ

WindowsMac OS Xで改行コードが異なるので両方で開発する場合に
それが問題でコンフリクトになる。
Windows→CR+LR
Mac→LF

上記の違いをgitでは吸収してくれる設定がある。
(リポジトリへ移動し)コマンドで以下の設定をする

 Windows   -> git config --global core.autocrlf true
 Mac/Linux -> git config --global core.autocrlf input