У меня есть ловушка предварительного получения, чтобы проверить соглашение об именах для запуска Git проекта:
valid_branch_regex="^(master|release-[0-9]{4}-[0-9]{2}|[A-Z|0-9]{3,6}-[0-9]+-.*)"
while read oldrev newrev refname; do
echo "$refname : $oldrev ~ $newrev"
current_branch=$refname
short_current_branch="$(echo $current_branch | sed 's/refs\/heads\///g')"
done
message="There is something wrong with your branch name. Branch names in this project must adhere to this contract:\
$valid_branch_regex. Your commit will be rejected. You should rename your branch to a valid name and try again."
if [[ ! $short_current_branch =~ $valid_branch_regex ]]
then
echo "$message"
exit 1
fi
exit 0
Проблема в том, что я хочу обойти ветви, которые были переданы до применения скрипта. Есть идеи улучшить мой текущий лог c?
Спасибо!