我有一个 git 存储库。它有 ABCDE ... 提交。现在我想将 D 签出为一个名为 Dbranch 的新分支。所以我执行:git checkout D -b Dbranch
。现在我想删除这个分支。首先我需要切换到 master 分支,然后使用git branch -d Dbranch
删除它。但是当我执行时git checkout master
,它给了我错误。
error: The following untracked working tree files would be overwritten by checkout:
source/a/foo.c
...... (too many lines)
Please move or remove them before you can switch branches.
Aborting
如何删除Dbranch?