错误记录Git 使用报错 ( error: The branch ‘feature1‘ is not fully merged. )

Posted 韩曙亮

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了错误记录Git 使用报错 ( error: The branch ‘feature1‘ is not fully merged. )相关的知识,希望对你有一定的参考价值。





一、报错信息



执行

git branch -d feature1

命令 , 删除 feature1 分支 , 报如下错误 :

D:\\Git\\git-learning-course>git branch -d feature1
error: The branch 'feature1' is not fully merged.
If you are sure you want to delete it, run 'git branch -D feature1'.





二、解决方案



出现上述原因 , 是因为 feature1 分支创建后 , 没有进行合并 , 报上述错误 , 提示开发者是否要进行合并之后 , 再删除这个分支 ;

看到这个提示后 , 开发者应该去考虑是否要进行合并 , 如果要合并 , 执行 分支合并 操作 , 然后就可以顺利的使用

git branch -d feature1

命令 , 删除分支 ;

如果不想合并这个分支 , 可以考虑使用

git branch -D feature1

命令 , 强行删除该 feature1 分支 ;

执行过程 :

D:\\Git\\git-learning-course>git branch -D feature1
Deleted branch feature1 (was c911a5d).

D:\\Git\\git-learning-course>

以上是关于错误记录Git 使用报错 ( error: The branch ‘feature1‘ is not fully merged. )的主要内容,如果未能解决你的问题,请参考以下文章

Git上传错误:The requested URL returned error: 403

错误记录Git 使用报错 ( error: Cannot delete branch ‘dev‘ checked out at ‘D:/Git/git-learning-course‘)

错误记录Git 使用报错 ( error: Cannot delete branch ‘dev‘ checked out at ‘D:/Git/git-learning-course‘)

错误记录Python 安装依赖库报错 ( ERROR: Could not find a version that satisfies the requirement elftools )

git推送到github报错:error: The requested URL returned error: 403 Forbidden while accessing https://github

git----报错GnuTLS recv error (-110): The TLS connection was non-properly terminated的解决方案