Como obtenho a lista de mesclagem com o git?

0

Quando tento mesclar um arquivo, obtenho

$ git merge origin/develop
Removing t/table_statistic_grains_test.t
Removing t/table_statistic_grains_calllog.t
Removing t/table_statistic_grains_accession.t
Auto-merging t/table_donor_document.t
Auto-merging install.sh
CONFLICT (content): Merge conflict in install.sh

No entanto, quando perco a lista e tento terminar a mesclagem, tudo o que acontece é

$ git merge
error: 'merge' is not possible because you have unmerged files.
hint: Fix them up in the work tree,
hint: and then use 'git add/rm <file>' as
hint: appropriate to mark resolution and make a commit,
hint: or use 'git commit -a'.
fatal: Exiting because of an unresolved conflict.

Como obtenho essa lista de volta sem --abort e uma tentativa de re merge ?

    
por Evan Carroll 22.07.2014 / 08:31

1 resposta

0

Use o git mergetool no arquivo "install.sh" ou edite-o no seu editor para tentar manualmente o arquivo de mesclagem. Depois disso, você deve adicionar o arquivo mesclado ao índice e confirmá-lo. Agora você deve ter a oportunidade de fazer outras coisas.

git mergetool install.sh
git add install.sh
git commit -a
    
por 22.07.2014 / 10:49

Tags