Is there a special name (like HEAD, FETCH_HEAD) for the root commit on the current branch in a git repository?

坚强是说给别人听的谎言 提交于 2019-12-12 17:19:36

问题


I find myself referring to the root commit for various reasons. I usually make a tag called first or root to make it easier, but I have been dealing with quite a few repositories lately and even this manual tagging is getting quite tedious.

Is there an easy way to refer to the root commit, something similar to HEAD or FETCH_HEAD?


回答1:


I only see tagging that first commit relevant for you as the only current solution.
That way, you can refer to it through a well named tag instead of looking for its SHA1 through the log.

Note: there can be several "root" commits in a Git repo (i.e. several commits without any parent)
See for instance this thread, with Jakub Narębski's answer:

Not to mention that you can have multiple roots (multiple commits with no parent) in git repository.
Besides independent branches (like 'man', 'html' or 'todo') it is usually result of absorbing or subtree-merging other projects.
In 'master' branch there are 5 roots or more: joined 'git-tools' (mailinfo / mailsplit), absorbed gitweb, and subtree-merged gitk and git-gui.




回答2:


To find SHA-1 identifiers of all root commits (starting with any local branch) in a git repository, you can use the following command:

$ git rev-list --parents --all |
  grep -v ' '

You can then use git show to examine them.


Explanation: git rev-list option --parents makes it print space separated list of all parents of the commit (in the form "commit parent…"). Therefore if a commit has any parents, the line from git rev-list invocation contains at least one space separating commit id from its parent id(s).

The option --all means that git rev-list works as if all the refs in refs/ are listed on the command line as <commit>.




回答3:


Not so easy, but you can get the sha of the "root" that corresponds to HEAD (head's parent's parent's parent's ... parent until a commit is reached that has no parent) using

git rev-list --topo-order --reverse HEAD | head -n 1

Works for any commit actually. If there are multiple convergent paths of history, you'll get the root of the path that has the most commits in it.

I can't say that I see any use whatsoever for it, though. Most things that have any reason to traverse history an unlimited depth into the past already know how.



来源:https://stackoverflow.com/questions/3836040/is-there-a-special-name-like-head-fetch-head-for-the-root-commit-on-the-curre

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!