Liu Hao
Liu Hao

Reputation: 512

Make git pull always use rebase=merges?

I have set git config --global pull.rebase merges like this question in SO: git pull --rebase: passing --rebase-merges

but It doesn't work when I do git pull

The version I use is git version 2.38.1.windows.1

git pull --rebase seems like works

Update:
I have also set pull.ff=only.
git pull does not work, complains git pull not possible to fast-forward aborting

Upvotes: 0

Views: 80

Answers (1)

Ziming Song
Ziming Song

Reputation: 1346

Do you mean git config --global pull.rebase true?

Upvotes: 1

Related Questions