Git pull problema de mesclagem com origem remota

0

Eu fiz git fetch e git fetch --all , mas não houve saída para o mesmo. depois disso, quando eu faço git pull novamente, recebo novamente o erro abaixo.

Estou disposto a buscar a origem do controle remoto para o meu local.

Eu até fiz isso abaixo, mas ainda há um erro.

[root@connect /myurl/fd-ansible]# git fetch origin master
Password:
From https://github.com/myurl/fd-ansible
 * branch            master     -> FETCH_HEAD
[root@connect /myurl/fd-ansible]# git clean -df
[root@connect /myurl/fd-ansible]# git pull
Password:
Updating 8bf6b66..a0b2167
error: Your local changes to 'group_vars/system1' would be overwritten by merge.  Aborting.
Please, commit your changes or stash them before you can merge.

Editado com a solução @Stephen Kitt

[root@connect /myurl/fd-ansible]# git checkout group_vars/system1
[root@connect /myurl/fd-ansible]# git pull
Password:
Updating 8bf6b66..a0b2167
Fast-forward
 cmdb/vm.csv |  118 +++++++++++++++++++++++++-------------------------
 group_vars/system1       |   56 ++++++++++++++++++++++++
 2 files changed, 115 insertions(+), 59 deletions(-)
    
por Mongrel 11.01.2017 / 03:45

1 resposta

1

Para sobrescrever seu arquivo local (perdendo suas alterações):

git checkout group_vars/system1

Então você deve poder git pull .

    
por 11.01.2017 / 06:24

Tags