summaryrefslogtreecommitdiff
path: root/lib/gitlab/git/ref.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gitlab/git/ref.rb')
-rw-r--r--lib/gitlab/git/ref.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/git/ref.rb b/lib/gitlab/git/ref.rb
index 47cfb483509..1d7966a11ed 100644
--- a/lib/gitlab/git/ref.rb
+++ b/lib/gitlab/git/ref.rb
@@ -24,7 +24,7 @@ module Gitlab
# Ex.
# Ref.extract_branch_name('refs/heads/master') #=> 'master'
def self.extract_branch_name(str)
- str.gsub(%r{\Arefs/heads/}, '')
+ str.delete_prefix('refs/heads/')
end
def initialize(repository, name, target, dereferenced_target)