2

私はgit diffを見ています。そのほとんどは、あるファイルから別のファイルに移動された同じコードと空白です。どうすれば実際の違いを確認できますか? git diff -b -C -C私は無駄にしようとした。

4

3 に答える 3

1

-Mgit diffのオプションを使用します。

   -M[<n>], --find-renames[=<n>]
       Detect renames. If n is specified, it is a threshold on the
       similarity index (i.e. amount of addition/deletions compared 
       to the file’s size). For example, -M90% means git should 
       consider a delete/add pair to be a rename if more than 90% 
       of the file hasn’t changed.

そして-w

   -w, --ignore-all-space
       Ignore whitespace when comparing lines. This ignores
       differences even if one line has whitespace where the
       other line has none.
于 2013-05-23T05:21:45.730 に答える