Skip to content

Commit 282c3ad

Browse files
authored
new error added
### error: the branch 'libraryUI' is not fully merged The error message you're encountering indicates that Git is preventing you from deleting the libraryUI branch because it is not fully merged into your current branch or any other branch that you've specified. Git is trying to prevent you from accidentally losing work that hasn't been merged yet.
1 parent 01094ba commit 282c3ad

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

src/data/error.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,12 @@
323323
"title": "Git nothing to commit",
324324
"description": "The Git command line informs us that our local repository contains one more commit than our remote repository.",
325325
"solutions": "git push"
326+
},
327+
{
328+
"type": "branch",
329+
"title": "the branch [BRANCHNAME] is not fully merged",
330+
"description": "The error message you're encountering indicates that Git is preventing you from deleting the [BRANCHNAME] branch because it is not fully merged into your current branch or any other branch that you've specified. Git is trying to prevent you from accidentally losing work that hasn't been merged yet.",
331+
"solutions": "git branch -D [BRANCHNAME, multiple branchname can be use by using space]"
326332
}
327333
]
328-
}
334+
}

0 commit comments

Comments
 (0)