📜  设置 git pull rebase 默认值 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:51:30.860000             🧑  作者: Mango

代码示例1
## command
git pull --rebase

## configs
# git version >= 1.7.9
git config --global pull.rebase true
# git version < 1.7.9
git config --global branch.autosetuprebase always