fatal: невозможно запустить .git / hooks / pre-push: Нет такого файла или каталога
файл предварительного нажатия в .git / hooks / pre-push
#!/bin/env bash
echo "Running RSpec"
bundle exec rspec spec
spec=$?
if [ $spec -eq 0 ]; then
echo -en "\\033[32mTests are green, pushing...\\033[0;39m\n"
exit 0
else
echo -en "\\033[1;31mCannot push, tests are failing. Use --no-verify to force push.\\033[0;39m\n"
exit 1
fi
Я побежал ..
chmod u+x .git/hooks/pre-push
и получил код отсюда:
https://gist.github.com/johnhamelink/577b8613ae82d2b3037b