Class: Overcommit::Hook::PreRebase::MergedCommits

Inherits:
Base
  • Object
show all
Defined in:
lib/overcommit/hook/pre_rebase/merged_commits.rb

Overview

Prevents rebasing commits that have already been merged into one of a specified set of branches.

Instance Attribute Summary

Attributes inherited from Base

#config

Instance Method Summary collapse

Methods inherited from Base

#applicable_files, #command, #description, #enabled?, #execute, #execute_in_background, #flags, #in_path?, #included_files, #initialize, #name, #parallelize?, #processors, #quiet?, #required?, #required_executable, #required_libraries, #run?, #run_and_transform, #skip?

Constructor Details

This class inherits a constructor from Overcommit::Hook::Base

Instance Method Details

#runObject



7
8
9
10
11
12
13
14
15
# File 'lib/overcommit/hook/pre_rebase/merged_commits.rb', line 7

def run
  # Allow rebasing a detached HEAD since no refs are changed.
  return :pass if detached_head? || illegal_commits.empty?

  message = 'Cannot rebase commits that have already been merged into ' \
            "one of #{branches.join(', ')}"

  [:fail, message]
end