使ってます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'.
これらのエラーを解決する方法は?