एक ऐसी परियोजना में जहाँ कुछ फाइलों में ^ M न्यूलाइन विभाजक के रूप में होता है। इन फाइलों को मुश्किल से देखना असंभव है, क्योंकि git-diff इसे देखता है क्योंकि पूरी फाइल सिर्फ एक लाइन है।
पिछले संस्करण के साथ कोई कैसे भिन्न होता है?
क्या "उपचार ^ एम जब न्यूलाइन के रूप में अलग हो रहा है" जैसा कोई विकल्प है?
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>
अपडेट करें:
अब मैंने एक रूबी स्क्रिप्ट लिखी है जो नवीनतम 10 संशोधनों की जांच करती है और सीआर को एलएफ में परिवर्तित करती है।
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
git diff --ignore-cr-at-eol
। देखें नीचे मेरा उत्तर ।
git diff -b
यह समान है git diff --ignore-space-change
।
git diff -b
- मैंने इसे stackoverflow.com/a/46265081/58794