Git :Объединение проблем с Git

Я используюgit version 1.7.11.msysgit.0

Я создал репозиторий на GitHUB и добавил файл README.md с некоторым текстовым содержимым.

Позже я установил клиент GIT, сделал клон, чтобы получить содержимое сервера на свою машину.

Затем я удалил файл README.md на свой локальный компьютер.

Теперь, когда я делаю git commit, я получаю эту ошибку

praveenk@MSIN-BT-100 /d/workspace/MYTestRepo (master|MERGING)
$ git commit ;
U       README.md
error: 'commit' 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.

Это сgit pull:

$ git pull;
U       README.md
A       One.txt
Pull is not possible because you have unmerged files.
Please, fix them up in the work tree, and then use 'git add/rm <file>'
as appropriate to mark resolution, or use 'git commit -a'.

Как решить эти ошибки?

21
задан ROMANIA_engineer 6 September 2016 в 08:02
поделиться