git diffで違うブランチのファイル、または違う名前のファイルを比較する

2014年2月10日

同一リビジョンで違うファイルを比較する

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

git

Posted by GENDOSU