Skip to content
Snippets Groups Projects
gitolite.rb 1.35 KiB
Newer Older
  • Learn to ignore specific revisions
  •   class Gitolite
        class AccessDenied < StandardError; end
    
        def set_key key_id, key_content, projects
    
          config.apply do |config|
            config.write_key(key_id, key_content)
            config.update_projects(projects)
    
          end
        end
    
        def remove_key key_id, projects
    
          config.apply do |config|
            config.rm_key(key_id)
            config.update_projects(projects)
    
        def update_repository project_id
          project = Project.find(project_id)
    
        def move_repository(old_repo, project)
    
          config.apply do |config|
            config.clean_repo(old_repo)
    
            config.update_project(project)
    
        # Remove repository from gitolite
        #
        # name - project path with namespace
        #
        # Ex.
        #   remove_repository("gitlab/gitlab-ci")
        #
        def remove_repository(name)
          config.destroy_project!(name)
    
        def url_to_repo path
    
          Gitlab.config.gitolite.ssh_path_prefix + "#{path}.git"
    
        end
    
        def enable_automerge
    
          config.admin_all_repo!
    
        def update_repositories projects
          config.apply do |config|
            config.update_projects(projects)
          end
        end
    
    
        alias_method :create_repository, :update_repository