git diffで違うブランチのファイル、または違う名前のファイルを比較する
同一リビジョンで違うファイルを比較する
1 |
git diff master:app/views/top/index.html master:app/views/top/area_index.html |
違うブランチのファイルを比較する
1 |
git diff master:app/views/top/index.html bugfix:app/views/top/area_index.html |
同一名称でブランチ間比較
1 |
git diff master bugfix -- app/views/top/index.html |
ディスカッション
コメント一覧
まだ、コメントがありません