在Git中查找HEAD分离的分支

时间:2013-09-06 22:35:16

标签: git

设置OpenEmbedded项目后,源设置为分离头状态。如何确定从哪个分支(本地或远程)检出源代码?

是的,您可以查看分支并比较代码。有更简单的方法吗?

我正在使用Git 1.7.1版。

$ git config -l
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
remote.origin.url=git://arago-project.org/git/projects/meta-arago-amsdk.git
branch.master.remote=origin
branch.master.merge=refs/heads/master
branch.amsdk-06.00.00.00-integration.remote=origin
branch.amsdk-06.00.00.00-integration.merge=refs/heads/amsdk-06.00.00.00-integration

$ git branch -a
* (no branch)
  amsdk-06.00.00.00-integration
  master
  remotes/origin/HEAD -> origin/master
  remotes/origin/amsdk-05.06.00.00-integration
  remotes/origin/amsdk-05.07.00.00-integration
  remotes/origin/amsdk-05.08.00.00-integration
  remotes/origin/amsdk-06.00.00.00-integration
  remotes/origin/master
  remotes/origin/master-upstream

1 个答案:

答案 0 :(得分:8)

解决方案1:git reflog

如果由于您的工作副本进入了分离头状态,您还没有移动HEAD引用,您可以使用git reflog -1查找您的头部分离位置:

git reflog -1
d761f4a HEAD@{0}: checkout: moving from feature to head~5

请注意,我不确定此信息是否可用于旧版本的Git。

即使你一直在移动HEAD引用,你仍然可以找到你在reflog中某处分离的点:

git reflog | grep checkout

对于无法访问grep的用户,您可以在PowerShell中使用findstr,或使用Git中内置的这些标志:

git log --walk-reflogs --grep-reflog "checkout" --oneline

解决方案2:查找包含当前提交的所有分支

查找包含您当前已签出的提交的所有分支(本地和远程跟踪分支):

git branch --all --contains HEAD

然后只检查每个分支的第一次提交,看看给定的提交是否是该分支的负责人:

git log -1 <branch>

感谢torek for simplified solution