Funkin/.github/hooks/pre-push

6 lines
135 B
Bash

#!/bin/sh
if git diff --cached --submodule | grep -q "^+"; then
echo "WARNING: You have unpushed changes in submodules."
exit 1
fi