debian-mirror-gitlab/lib/gitlab/git/branch.rb

12 lines
230 B
Ruby
Raw Normal View History

2017-09-10 17:25:29 +05:30
# Gitaly note: JV: no RPC's here.
2017-08-17 22:00:37 +05:30
module Gitlab
module Git
class Branch < Ref
2017-09-10 17:25:29 +05:30
def initialize(repository, name, target, target_commit)
super(repository, name, target, target_commit)
end
2017-08-17 22:00:37 +05:30
end
end
end