This commit is contained in:
Your Name
2024-02-13 01:26:47 -06:00
parent 7f7d487723
commit 13db24e327

View File

@@ -27,7 +27,7 @@ if [ "$timeout" -gt 0 ]; then
git fetch origin "$branch" git fetch origin "$branch"
# Check if the local branch is behind the remote branch # Check if the local branch is behind the remote branch
LOCAL=$(git rev-parse "@{0}") LOCAL=$(git rev-parse "@{0}")
REMOTE=$(git rev-parse "origin/$branch") REMOTE=$(git rev-parse "origin/$branch")
if [ "$LOCAL" != "$REMOTE" ]; then if [ "$LOCAL" != "$REMOTE" ]; then