LINUX.ORG.RU

Отстал от жизни: GIT хочет непонятного (push, matching, simple, current, upstream)

 ,


2

1

Попытался после годового перерыва попробовать запушить парочку изменений в свой давний проект (репозитарий на bitbucket.org).

А мне в ответ:

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

See 'git help config' and search for 'push.default' for further information.
(the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
'current' instead of 'simple' if you sometimes use older versions of Git)

To git@bitbucket.org:***/***.git
 ! [rejected]        master -> master (non-fast-forward)

ERROR: failed to push some refs to 'git@bitbucket.org:***/***.git'
hint: Updates were rejected because a pushed branch tip is behind its remote
hint: counterpart. If you did not intend to push that branch, you may want to
hint: specify branches to push or set the 'push.default' configuration variable
hint: to 'simple', 'current' or 'upstream' to push only the current branch.

Это чтоа?

Вопрос по ворнингу: Какой режим лучше указать - matching или simple?

Вопрос по еррору: От чего ошибка? Тут я вижу еще два режима - current и upstream.

Какой из всех этих режимов выбрать?

★★★★★

Последнее исправление: Xintrea (всего исправлений: 1)

Какой режим лучше указать - matching или simple?

Если есть предпочтение отправлять изменения для каждой ветви в отдельности, то simple.

От чего ошибка?

В удалённой ветке master есть коммиты, отсутствующие в локальной master.

Тут я вижу еще два режима - current и upstream.

Git даёт посказку: «Наберите git help config и найдите описание push.default».

current - как simple, но отработает также, если remote.fetch!=remote.push.

upstream - как simple, но без проверки на совпадение имён локальной и удалённой веток.

Какой из всех этих режимов выбрать?

Я выбрал matching.

backbone ★★★★★
()

Использую simple, matching явно не для меня. В мане есть сноска по поводу matching, мне он не подходит.

andreyu ★★★★★
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.