我有一个提交,其中包含多个(不需要的)分支 git log --graph我知道了:
commit 417bb7dfd7d7230fd1c859414d2aa231e72e24e6 (HEAD -> Feature1, master, Feature2)
如何将Feature1,Feature2分支从提交417bb7dfd7d7230fd1c859414d2aa231e72e24e6移至其他提交?
感谢您的帮助。
答案 0 :(得分:4)
这似乎是出于误解。
这些分支不在提交中 。
在git中,分支是指向提交的标签。提交可以指向任何数量(零个,四个,一千个,无论什么)的分支。
A---B---C---D
\ \ \
\ \ master
\ \
\ branch-abc
\
branch-xyz
在上面,master
,branch-abc
和branch-xyz
恰好指向不同的提交,但是如果您这样做了
git checkout branch-abc
git merge master
然后您将得到
A---B---C---D
\ \
\ master, branch-abc
\
branch-xyz
...在哪里,是的,master
和branch-abc
指向同一提交。
如果出于任何原因您要做需要移动或删除分支,这很容易(但是再次,我必须强调重要的部分,即了解分支的用途)。
# move a branch to commit abc123 (when the branch is NOT checked out)
git branch -f my_branch abc123
# or if the branch IS checked out
git reset --hard abc123
# delete a branch
git branch -d my_branch
# ...which will complain in case the branch isn't fully merged yet
# in which case you can then force it
git branch -D my_branch