11 lines
230 B
Ruby
11 lines
230 B
Ruby
# Gitaly note: JV: no RPC's here.
|
|
|
|
module Gitlab
|
|
module Git
|
|
class Branch < Ref
|
|
def initialize(repository, name, target, target_commit)
|
|
super(repository, name, target, target_commit)
|
|
end
|
|
end
|
|
end
|
|
end
|