Is there a way to setup the host Git repository such that any git pull done from its (local) clones uses --rebase by default? By searching on Stack
git pull
--rebase
How about
git config --global pull.rebase true
This will tell git to always pull with rebase.