如何使用git hook pre-commit来停止提交到master

时间:2011-10-27 23:11:30

标签: git bash githooks

除非我确定,否则我想不假思索地将自己的东西交给主分公司。所以我尝试使用这个脚本来确定我所在的分支但存在问题。当我创建一个新的分支git name-rev返回master时,即使我在另一个分支

$ git branch
  ignore
  master
* set_support
$ git name-rev --name-only HEAD
master

这是我的剧本。

#!/bin/sh
# Check to see if we are on master branch. Stop accidental commits
if [ "`git name-rev --name-only HEAD`" == "master" ]
then
   if [ -f i_want_to_commit_to_master ]
   then
      rm i_want_to_commit_to_master
      exit 0
   else
      echo "Cannot commit to master branch Adrian"
      echo "Remember to create file 'touch i_want_to_commit_to_master' to commit to master"
   fi
   exit 1
fi
exit 0

对于Mark:我针对最新的稳定标签和相同的结果重建了git。只有在对新分支进行提交后才能使用它。

$ mkdir gittest
$ cd gittest
$ git init
Initialized empty Git repository in /home/adrian/gittest/.git/
$ touch file1
$ git add file1
$ git commit
[master (root-commit) 7c56424] New file
 0 files changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 file1
$ git branch
* master
$ git checkout -b new_branch
Switched to a new branch 'new_branch'
$ git name-rev --name-only HEAD
master
$ git --version
git version 1.7.7.1
$ git branch
  master
* new_branch
$ touch file2
$ git add file2
$ git commit
[new_branch 1e038fb] new file
 0 files changed, 0 insertions(+), 0 deletions(-)
 create mode 100644 file2
$ git name-rev --name-only HEAD
new_branch

2 个答案:

答案 0 :(得分:11)

此命令用于查找提交的友好名称。发生的事情是HEAD首先解析为提交的sha1,然后确定名称。我猜它是随意挑选名字的主人,因为它首先出现在git log --decorate会遇到的。

我只是在你的测试中解析git branch的输出:

"`git branch | grep \* | cut -f2 -d' '` == "master"

或更直接的方式是:

$(git symbolic-ref HEAD 2>/dev/null) == "refs/heads/master"

答案 1 :(得分:8)

作为替代方案,您可以按this answer中的建议使用git rev-parse。所以if表达式将是:

"$(git rev-parse --abbrev-ref HEAD)" == "master"