fatal: o ramo upstream do seu ramo atual não corresponde ao nome do seu ramo atual

Depois de fazer um checkout da filial remotareleases/rel_5.4.1 usando a GUI do Git, estou vendo essa mensagem de erro inesperada quando tentopush:

fatal: The upstream branch of your current branch does not match
the name of your current branch.  To push to the upstream branch
on the remote, use

    git push origin HEAD:releases/rel_5.4.1

To push to the branch of the same name on the remote, use

    git push origin rel_5.4.1

Não sei do que o Git está falando. Eu provavelmente quero empurrar paraorigin releases/rel_5.4.1 desde que é o ramo que eu verifiquei. Portanto, nenhuma opção parece correta para mim.

git status diz que estou no ramorel_5.4.1.

Aqui está o ramo como aparece no meu.git/config:

[branch "rel_5.4.1"]
    remote = origin
    merge = refs/heads/releases/rel_5.4.1

O que está acontecendo?

questionAnswers(5)

yourAnswerToTheQuestion