11

我想做的事:

我想禁止将任何合并提交送到中央存储库。唯一的例外是如果合并是在中央存储库中存在的分支之间。我想在中央存储库中强制执行此操作。

解释我为什么要这样做:

注意:如果这个解释让你偏离了我想要做的事情,那么忽略这个解释。当然,我很高兴听到解决我在下面解释的问题的其他方法,但我感兴趣的答案是我想要做的事情,如上所述。

我有一个中央 git 存储库,其中有几个开发人员跟踪的分支。每个开发人员都为该中央存储库的分支配置了一个远程。

我们对该项目遵循同步提交策略,因此每个开发人员必须始终在推送之前将他们的最新工作重新定位在远程分支 HEAD 之上。我想通过禁止将任何合并提交推送到中央存储库来执行此策略。唯一的例外是如果合并是在中央存储库中存在的分支之间。

为简化起见,我不希望开发人员的本地跟踪分支与远程分支合并。而是总是基于远程分支。

我们通过设置 branch.NAME.rebase = true 在开发人员的机器上部分强制执行此操作,这有助于避免开发人员使用 git pull 时出现问题,但是我们需要一个解决方案来在中央存储库端强制执行此操作。

一个非常基本的解决方案是拒绝带有注释的提交:“合并 GITURL 的分支 'NAME'”,但是,更多类似于检查中央存储库的分支路径中是否存在提交的所有父级的东西会更有趣。

建议?解决方案?

编辑:

这是我到目前为止所拥有的:

#!/bin/sh
read sha1old sha1new refname

# check if this is merge commit
merge_commit="`git rev-list --parents --merges --no-walk $sha1new 2> /dev/null`"
if test -n "$merge_commit"
then
  # this was a merge commit
  # $merge_commit contains: sha1new sha1parent_1 ... sha1parent_n
fi
exit 0

麻烦的地方是确定任何两个父母的祖先是否来自一个分支。另外,因为在更新任何参考之前调用了 pre-receive 钩子,如果推送包含远程中存在的两个分支的提交,包括这两个分支之间的合并,那么我不知道这里的解决方案是什么。 .

4

1 回答 1

11

防止会创建非线性历史的推送的一种方法是设置一个pre-receive钩子,用于git rev-list --parents <OLD>..<NEW>检查具有多个父级的任何新提交,如果是,则错误退出。为了处理第二个要求,您可以改为检查是否有多个父级,这些提交必须全部位于存储库中的现有分支上。我没有对此进行太多测试,但这个pre-receive钩子(或它的一些变体)可能是你想要的:

#!/usr/bin/ruby -w

# A pre-receive hook that should refuse any pushes that would update
# master in such a way that a non-linear history would be created,
# except where it involves a merge from another branch in this
# repository.  This has only had very cursory testing.

# This is a suggested answer to:
#   http://stackoverflow.com/questions/2039773/have-remote-git-repository-refuse-local-branch-merge-commits-on-push

ref_to_check = "refs/heads/master"

rev_old, rev_new, ref = STDIN.read.split(" ")

if ref == ref_to_check
  merge_bases = `git merge-base #{rev_old} #{rev_new}`.strip.split(/\s+/)
  unless $?.success? and merge_bases.length == 1
    STDERR.puts "No unique merge base found between #{rev_old} and #{rev_new}"
    exit(1)
  end
  rev_list_output = `git rev-list --parents #{merge_bases[0]}..#{rev_new}`
  list_of_revs_with_parents = rev_list_output.strip.split(/[\r\n]+/)
  list_of_revs_with_parents.each do |line|
    rev_with_parents = line.strip.split(/\s+/)
    if rev_with_parents.length > 2      
      parents = rev_with_parents.slice(1,rev_with_parents.length)
      # The question says to permit non-linear history if the merge is
      # from another branch in the central repository, so check
      # whether that's the case.  (If you just want to prevent all
      # pushes that add non-linear history, just exit with error
      # here.)
      any_parent_not_on_any_branch = false
      parents.each do |p|
        branches = `git branch --contains #{p} 2> /dev/null`
        if $?.success? and ! branches.strip.empty?
          STDERR.puts "More than one parent of commit #{rev_with_parents[0]}"
          STDERR.puts "... but parent #{p} is on branches:"
          STDERR.puts branches
        else
          STDERR.puts "Parent #{p} not found on any other"
          STDERR.puts "branch in this repository"
          any_parent_not_on_any_branch = true
          break
        end
      end
      if any_parent_not_on_any_branch
        STDERR.puts "Refusing push, since it would create non-linear history"
        STDERR.puts "for #{ref} and the merges don't just involve commits on"
        STDERR.puts "other branches in this repository."
        exit(2)
      end
    end
  end
end

我希望这有点用。

于 2010-01-17T14:48:49.733 回答