폴더 또는 전역적으로 특정 명령을 차단하는 방법이 있습니까? 그냥 차단해야지
git merge staging
나는 성공하지 못한 채 git Hooks를 사용해 보았습니다.
답변1
나는 prepare-commit-msg 후크를 사용했습니다:
#!/bin/sh
#Prevent merging staging branch in feature branch
if cat "$1" | grep "staging"; then
echo "\033[31m DO NOT MERGE staging BRANCH!"
exit 1
fi