使提交处于分离头状态,如何将它们应用于分支?

时间:2013-06-08 21:08:52

标签: git version-control git-checkout

我做了一个git checkout并在处于分离头状态时进行了一些更改。我提出了改变。如何将这些更改应用于特定分支?我可以签出那个分支然后进行git合并吗?

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

你可以创建一个新分支

If you want to keep them by creating a new branch, this may be a good time
to do so with:

 git branch new_branch_name <SHA of commit>

Get a series of commits on a detached head onto a branch