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 Overflow, I learned about branch.autosetuprebase
, but it needs to be configured per clone individually.
My project flow is set up such that we pull
the develop
branch before merge
ing a feature branch to it. This pull
nearly always uses --rebase
, so I am trying to figure out if this can be the default.