如何解决git MERGING状态?

时间:2014-05-28 13:34:35

标签: git merge git-merge

我有一个从源分支到目标分支的拉取请求。

我跑了:

$> git checkout target-branch
$> git pull
$> git checkout source-branch
$> git merge target-branch

我解决了一些冲突:

$> git mergetool

此合并并非100%成功,因此我手动从文件中删除了冲突假象(>>>>>>等)并响应提示:

>Was the merge successful? [y/n]

y

所以我对源代码分支中所有文件的状态感到满意,但我的CLI现在显示:

dir/to/my/project (source-branch|MERGING)
$>

我如何告诉git我对合并完成感到满意?

1 个答案:

答案 0 :(得分:9)

您很可能需要git commit将合并提交到本地存储库。