Commit b13c1469 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Rollback diff drop and set default commit id to HEAD

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent 3695ae18
......@@ -25,7 +25,7 @@ class Repository
raw_repository.empty?
end
def commit(id = nil)
def commit(id = 'HEAD')
return nil unless raw_repository
commit = Gitlab::Git::Commit.find(raw_repository, id)
commit = Commit.new(commit) if commit
......
......@@ -13,7 +13,7 @@ module Gitlab
lines_arr = ::Gitlab::InlineDiff.processing lines
lines_arr.drop(4).each do |line|
lines_arr.each do |line|
raw_line = line.dup
next if filename?(line)
......
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