git pull
のときいちいち git pull –rebase
ってするのが面倒なので
# master 上で git pull するときは常に rebase
git config branch.master.rebase true
# 全ブランチで rebase を使う
git config --global branch.autosetuprebase always
# 全ブランチで rebase を使う(1.7.9以降)
git config --global pull.rebase true
# 全ブランチで rebase を使う(1.8.5以降)
git config --global pull.rebase preserve
# 全ブランチで rebase を使う(2.22以降)
git config --global pull.rebase merges