如何解决git合并状态?

如何解决git合并状态?,git,merge,git-merge,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]

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

我参加过:

$> 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我对我完成的合并感到满意?

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

git status
没有给你提交合并的说明吗?@Chris,你说得对,我刚刚运行了它,它确实说
(使用“git提交”来结束合并)