- [[connect local and remote git repositories]]
# Idea
> warning: Pulling without specifying how to reconcile divergent branches is discouraged. You can squelch this message by running one of the following commands sometime before your next pull
```sh
# configure git to always use --ff-only by default
git config --global pull.ff only
```
- https://stackoverflow.com/questions/62653114/how-to-deal-with-this-git-warning-pulling-without-specifying-how-to-reconcile
> Fatal: Not possible to fast-forward, aborting
```sh
git pull --rebase
git pull --no-ff
```
[git - Fatal: Not possible to fast-forward, aborting - Stack Overflow](https://stackoverflow.com/questions/13106179/fatal-not-possible-to-fast-forward-aborting)
# References