Skip to content

Commit

Permalink
left out a period
Browse files Browse the repository at this point in the history
  • Loading branch information
pjhyett committed Dec 2, 2009
1 parent c4c1068 commit 2f1f63e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/grit/commit.rb
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def self.diff(repo, a, b = nil, paths = [])

def show
if parents.size > 1
diff = @repo.git.native("diff #{parents[0].id}..#{parents[1].id}", {:full_index => true})
diff = @repo.git.native("diff #{parents[0].id}...#{parents[1].id}", {:full_index => true})
else
diff = @repo.git.show({:full_index => true, :pretty => 'raw'}, @id)
end
Expand Down

0 comments on commit 2f1f63e

Please sign in to comment.