In git, what is the difference between a commit(s) and a revision(s)

后端 未结 2 1865
伪装坚强ぢ
伪装坚强ぢ 2021-01-01 13:05

There are a number of git commands, such as git clone --depth 10 , that require the number of revisions [git help revisions] to be give

相关标签:
2条回答
  • 2021-01-01 13:19

    See "SPECIFYING REVISIONS" of git rev-parse:

    A revision parameter <rev> typically, but not necessarily, names a commit object.
    It uses what is called an extended SHA1 syntax, [and includes] various ways to spell object names.

    So "revision" refers to the id you can use as a parameter to reference an object in git (usually a commit).

    HEAD@{5 minutes ago} is a revision which reference the commit present 5 minutes ago.

    gitrevision mentions:

    [...] some Git commands (such as git show) also take revision parameters which denote other objects than commits, e.g. blobs ("files") or trees ("directories of files").

    For instance, the following rev parameter doesn't reference a commit:

    <rev>:<path>, e.g. HEAD:README, :README, master:./README
    

    A suffix : followed by a path names the blob or tree at the given path in the tree-ish object named by the part before the colon.


    A "commit" in Git generally designates a "commit object" (as described in git commit-tree for instance):

    A commit encapsulates:

    • all parent object ids
    • author name, email and date
    • committer name and email and the commit time.

    So:

    • a commit designates one of the git objects (others are blobs, tree, tags, notes),
    • a revision is a way to reference a git object.

    In your case (git clone) --depth <n> does:

    Create a shallow clone with a history truncated to the specified number of revisions.

    It is for all the commits accessible at that depth, up to n revisions per path in the DAG.
    Since the result can be more than n commits, the term revision is more adapted here in order to emphasize you don't want just n commits, but any commits referenced by a max of n revisions accessible.

    However, in this context, revisions clearly reference only commits (as illustrated below) reachable (as you mentioned in "Is git clone --depth 1 (shallow clone) more useful than it makes out?").

    The question is "reachable from what"?

    You referenced this thread which included:

    IIRC, --depth=<n> is not "deepen by <n>", but "make sure I have at least <n> from the updated tip(s)".
    The shallow-clone hack gives you quite useless (even though it may be internally consistent) semantics if you shallow-cloned way in the past and fetched with --depth after the other side added many more commits than <n>, as you cannot guess what the right value of <n> should be without actually fetching without --depth.

    0 讨论(0)
  • 2021-01-01 13:21

    Interesting. I hadn't come across this distinction before but from skimming the documentation and my own experience, a commit in git is an object that points to a specific point in time in the history of the project (along with information on how it reached there). A revision is superset of this that talks about different ways to reference a commit or a range of commits.

    0 讨论(0)
提交回复
热议问题