Answers for "git config pull.rebase false # merge (the default strategy)"

1

set git pull rebase default

## 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
Posted by: Guest on March-10-2020
0

Git: warning: Pulling without specifying how to reconcile divergent branches is

To fix this go to
http://github.com/settings/emails

and unmark the box: Keep my email addresses private
Posted by: Guest on October-18-2020

Browse Popular Code Answers by Language