blog/check_git.sh
2025-04-17 19:00:40 +02:00

14 lines
No EOL
218 B
Bash
Executable file

#!/bin/bash
git fetch
HEADHASH=$(git rev-parse HEAD)
UPSTREAMHASH=$(git rev-parse main@{upstream})
if [ "$HEADHASH" != "$UPSTREAMHASH" ]
then
echo "remote has changed"
exit 1
else
#echo "no change"
exit 0
fi