git拉取程式碼報"warning: Pulling without specifying how to reconcile divergent branches is discouraged"

童年的回忆發表於2024-05-20

最近搭接了一套Linux環境,當使用命令git pull拉取git程式碼時,報瞭如下提示:

解決方案:

保證不再出現配置合併策略的警告文案,那麼你只需要執行
git config pull.ff false
或者 
git config --global pull.ff only
即可

相關文章