I didn't find any documentation on getting the difference between 2 files in rugged. I used the below code to commit a file using rugged
@repo=Rugged::Repository.new($reponame)
@[email protected]('D:\Ruby\MyGitRepo\file1.txt','blob')
puts @sha
commit = @repo.lookup(@sha)
how can see the difference between the 2 commits of the same object in rugged?