在项目中,其中一些文件包含^M作为换行符 分隔器,区分这些文件显然是不可能的,因为 Git diff将整个文件视为一行。

比较当前和以前的git有什么不同 源代码文件的版本?

有一个选项,如“对待^M换行时,差异”?

prompt> git-diff "HEAD^" -- MyFile.as 
diff --git a/myproject/MyFile.as b/myproject/MyFile.as
index be78321..a393ba3 100644
--- a/myproject/MyFile.cpp
+++ b/myproject/MyFile.cpp
@@ -1 +1 @@
-<U+FEFF>import flash.events.MouseEvent;^Mimport mx.controls.*;^Mimport mx.utils.Delegate
\ No newline at end of file
+<U+FEFF>import flash.events.MouseEvent;^Mimport mx.controls.*;^Mimport mx.utils.Delegate
\ No newline at end of file
prompt>

更新:

我写了一个Ruby脚本来检查最新的10个修订,并将CR转换为LF。

require 'fileutils'

if ARGV.size != 3
  puts "a git-path must be provided"
  puts "a filename must be provided"
  puts "a result-dir must be provided"
  puts "example:"
  puts "ruby gitcrdiff.rb project/dir1/dir2/dir3/ SomeFile.cpp tmp_somefile"
  exit(1)
end

gitpath = ARGV[0]
filename = ARGV[1]
resultdir = ARGV[2]

unless FileTest.exist?(".git")
  puts "this command must be run in the same dir as where .git resides"
  exit(1)
end

if FileTest.exist?(resultdir)
  puts "the result dir must not exist"
  exit(1)
end
FileUtils.mkdir(resultdir)

10.times do |i|
  revision = "^" * i
  cmd = "git show HEAD#{revision}:#{gitpath}#{filename} | tr '\\r' '\\n' > #{resultdir}/#{filename}_rev#{i}"
  puts cmd 
  system cmd
end

当前回答

有一个选项,如“对待^M换行时,差异”?

Git 2.16(2018年第一季度)将会出现一个问题,因为“diff”命令家族学会了忽略行末回车中的差异。

参见Junio C Hamano (gitster)提交e9282f0(2017年10月26日)。 帮助:Johannes Schindelin (dscho)。 (由Junio C Hamano—gitster—在commit 10f65c2中合并,2017年11月27日)

diff: ignore-cr-at-eol 一个新的选项——ignore-cr-at-eol告诉diff机器在(完整的)行末尾处理回车,就像它不存在一样。 就像其他“——ignore-*”选项忽略各种空白差异一样,这将有助于检查您所做的实际更改,而不会被编辑器程序所做的虚假CRLF<->LF转换分心。

其他回答

GitHub建议你应该确保在git处理的repo中只使用\n作为换行符。有一个自动转换的选项:

$ git config --global core.autocrlf true

当然,这是说将crlf转换为lf,而你想要将cr转换为lf。我希望这还能用…

然后转换文件:

# Remove everything from the index
$ git rm --cached -r .

# Re-add all the deleted files to the index
# You should get lots of messages like: "warning: CRLF will be replaced by LF in <file>."
$ git diff --cached --name-only -z | xargs -0 git add

# Commit
$ git commit -m "Fix CRLF"

核心。在手册页中有描述。

试试git diff——ignore-space-at-eol,或者git diff——ignore-space-change,或者git diff——ignore-all-space。

在我的例子中,这是一个命令:

git config  core.whitespace cr-at-eol

来源:https://public inbox.org/git/8d7e4807 - 9 -你姓名e357 - 8265 - 95 f22ab716e0@web.de / T /

还看到:

core.whitespace = cr-at-eol

或者说,

[core]
    whitespace = cr-at-eol

空格前有制表符。

如果你只是想要一个快速的行,使git差异,但不显示不同的结尾(因此^M)使用一个在最初的问题的第一个评论,它为我工作:

 git diff -b

考虑到这一点,从长远来看,您应该像所有其他答案所建议的那样,正确配置行结束符。