4
如何处理这个git警告?“不建议在不指定如何协调分歧分支的情况下进行拉动”
之后,git pull origin master我得到以下消息: 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: git config pull.rebase false # merge (the default strategy) git config pull.rebase true # rebase git config pull.ff …
163
git