1. 程式人生 > >【git】push.default is unset的解決方案

【git】push.default is unset的解決方案

今天遇到了一個問題。在執行 git add 和 git commit 操作之後,再進行 git push 操作,出現瞭如下提示:warning: push.default is

unset; its implicit value is changing in
Git 2.0 from 'matching' to 'simple'. To squelch this message
and maintain the current behavior after the default changes, use:
 
  git config --global push.default matching
 
To squelch this message and adopt the new behavior now, use:
 
  git config --global push.default simple

matching’ 引數是 Git 1.x 的預設行為,其意是如果你執行 git push 但沒有指定分支,它將 push 所有你本地的分支到遠端倉庫中對應匹配的分支。而 Git 2.x 預設的是 simple,意味著執行 git push 沒有指定分支時,只有當前分支會被 push 到你使用 git pull 獲取的程式碼。

根據提示,修改git push的行為:

git config --global push.default matching

再重新執行git操作即可