Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cherry_pick_service.rb « commits « services « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 605cca36f9c39d9d99355d0ba02b67a40a859785 (plain)
1
2
3
4
5
6
7
module Commits
  class CherryPickService < ChangeService
    def commit
      commit_change(:cherry_pick)
    end
  end
end