Jawaban dari @pauljz berfungsi dengan baik untuk kait git tertentu seperti pre-push
, tetapi pre-commit
tidak memiliki akses ke variabel tersebutoldrev newrev refname
Jadi saya membuat versi alternatif ini yang berfungsi untuk pre-commit, atau really and hook. Ini adalah pre-commit
hook yang akan menjalankan husky
skrip jika kita TIDAK berada di master
cabang.
#!/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
Saya harap itu membantu seseorang. Anda dapat dengan mudah memodifikasi untuk kebutuhan Anda, apa pun di antara pernyataan if
dan fi
.
git push origin master
hanya akan mendorongmaster
cabang keorigin
remote, yang saya asumsikan didefinisikan sebagai Assembla. Apakah Anda mengatakan bahwa Anda perlu memicu kail hanya ketika seseorang mendorongmaster
, sebagai lawanfeature1
, atau sesuatu seperti itu?