summaryrefslogtreecommitdiff
path: root/lib/gitlab/checks/force_push.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/checks/force_push.rb')
-rw-r--r--lib/gitlab/checks/force_push.rb17
1 files changed, 0 insertions, 17 deletions
diff --git a/lib/gitlab/checks/force_push.rb b/lib/gitlab/checks/force_push.rb
deleted file mode 100644
index dfa83a0eab3..00000000000
--- a/lib/gitlab/checks/force_push.rb
+++ /dev/null
@@ -1,17 +0,0 @@
-module Gitlab
- module Checks
- class ForcePush
- 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(#{Gitlab.config.git.bin_path} --git-dir=#{project.repository.path_to_repo} rev-list #{oldrev} ^#{newrev}))
- missed_refs.split("\n").size > 0
- end
- end
- end
- end
-end