16 lines
461 B
Ruby
16 lines
461 B
Ruby
|
module Gitlab
|
||
|
class ForcePushCheck
|
||
|
def self.force_push?(project, oldrev, newrev)
|
||
|
return false if project.empty_repo?
|
||
|
|
||
|
# Created or deleted branch
|
||
|
if Gitlab::Git.blank_ref?(oldrev) || Gitlab::Git.blank_ref?(newrev)
|
||
|
false
|
||
|
else
|
||
|
missed_refs, _ = Gitlab::Popen.popen(%W(git --git-dir=#{project.repository.path_to_repo} rev-list #{oldrev} ^#{newrev}))
|
||
|
missed_refs.split("\n").size > 0
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|