warning: push.default is unset; its implicit value has changed

git push одной ветки -- Настроить только на текущую ветку (Не отправлять на сервер все ветки) -- warning: push.default is unset;

Это можно сделать командой:

git config --global push.default current

-- тогда можно избежать такой проблемы.

Это же можно использовать для избаления от предупреждения в консоли:

warning: push.default is unset; its implicit value has changed in
Git 2.0 from 'matching' to 'simple'. To squelch this message
and maintain the traditional behavior, use:

git config --global push.default matching

To squelch this message and adopt the new behavior now, use:

Subscribe to RSS - warning: push.default is unset; its implicit value has changed