Câu trả lời từ @pauljz hoạt động tốt cho một số git hook như pre-push
, nhưng pre-commit
không có quyền truy cập vào các biến đóoldrev newrev refname
Vì vậy, tôi đã tạo phiên bản thay thế này hoạt động cho pre-commit, hoặc thực sự và hook. Đây là một pre-commit
hook sẽ chạy một husky
script nếu chúng ta KHÔNG ở trên master
nhánh.
#!/bin/bash
# git 'commit' does not have access to these variables: oldrev newrev refname
# So get the branch name off the head
branchPath=$(git symbolic-ref -q HEAD) # Something like refs/heads/myBranchName
branch=${branchPath##*/} # Get text behind the last / of the branch path
echo "Head: $branchPath";
echo "Current Branch: $branch";
if [ "master" != "$branch" ]; then
# If we're NOT on the Master branch, then Do something
# Original Pre-push script from husky 0.14.3
command_exists () {
command -v "$1" >/dev/null 2>&1
}
has_hook_script () {
[ -f package.json ] && cat package.json | grep -q "\"$1\"[[:space:]]*:"
}
cd "frontend" # change to your project directory, if .git is a level higher
# Check if precommit script is defined, skip if not
has_hook_script precommit || exit 0
# Node standard installation
export PATH="$PATH:/c/Program Files/nodejs"
# Check that npm exists
command_exists npm || {
echo >&2 "husky > can't find npm in PATH, skipping precommit script in package.json"
exit 0
}
# Export Git hook params
export GIT_PARAMS="$*"
# Run npm script
echo "husky > npm run -s precommit (node `node -v`)"
echo
npm run -s precommit || {
echo
echo "husky > pre-commit hook failed (add --no-verify to bypass)"
exit 1
}
fi
Tôi hy vọng điều đó sẽ giúp ai đó. Bạn có thể dễ dàng sửa đổi theo nhu cầu của mình, bất kỳ điều gì ở giữaif
fi
câu lệnh và .
git push origin master
sẽ chỉ đẩymaster
nhánh đếnorigin
điều khiển từ xa, mà tôi giả sử được định nghĩa là Assembla. Có phải bạn đang nói rằng bạn chỉ cần kích hoạt móc câu khi có ai đó đẩy tớimaster
, ngược lạifeature1
hoặc tương tự?