#!/bin/bash echo "Stopping file mode tracking..." git config core.filemode false echo "Resetting unintentional changes..." git checkout . echo "Pulling remote changes with rebase..." git pull --rebase origin develop echo "Pushing synchronized changes..." git push