git diffで違うブランチのファイル、または違う名前のファイルを比較する
同一リビジョンで違うファイルを比較する
git diff master:app/views/top/index.html master:app/views/top/area_index.html
違うブランチのファイルを比較する
git diff master:app/views/top/index.html bugfix:app/views/top/area_index.html
同一名称でブランチ間比較
git diff master bugfix -- app/views/top/index.html