O git não suporta mais o re-envio automático?

2

Muito recentemente, o git começou a mesclar, embora eu o tenha configurado para sempre rebase:

$ git config --list | grep -F branch.autosetup
branch.autosetuprebase=always
$ git pull
[Removed everything in the commit message]
error: Empty commit message.
Not committing merge; use 'git commit' to complete the merge.
$ git merge --abort

Foi definitivamente uma mesclagem trivial, porque:

$ git pull --rebase
First, rewinding head to replay your work on top of it...
Applying: [...]
$ echo $?
0

Este é um problema conhecido?

$ git --version
git version 2.3.1
    
por l0b0 28.02.2015 / 12:33

1 resposta

3

Acontece que branch.autosetup só entra em vigor em novas ramificações, criando uma configuração branch.[branch].rebase=true do repositório-local. Para definir isso retroativamente para o ramo master :

$ git config branch.master.rebase true

Meu mal.

    
por 28.02.2015 / 12:56

Tags