Commit 246faa3d authored by Riyad Preukschas's avatar Riyad Preukschas

Add Commit#to_diff for raw diff

parent 8b401039
...@@ -150,4 +150,19 @@ class Commit ...@@ -150,4 +150,19 @@ class Commit
def parents_count def parents_count
parents && parents.count || 0 parents && parents.count || 0
end end
# Shows the diff between the commit's parent and the commit.
#
# Cuts out the header and stats from #to_patch and returns only the diff.
def to_diff
# see Grit::Commit#show
patch = to_patch
# discard lines before the diff
lines = patch.split("\n")
while !lines.first.start_with?("diff --git") do
lines.shift
end
lines.join("\n")
end
end end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment