如何从git log中检出git中的特定版本?

kin*_*er1 17 linux git

我的git日志显示为:

enter code here
[git_trial]$ git log
commit 4c5bc66ae50780cf8dcaf032da98422aea6e2cf7
Author: king <king@king.ap.com>
Date:   Thu Jun 30 15:09:55 2011 +0530


This is third commit

commit 8072be67ddd310bc200cab0dccb8bcb2ec4f922c

Author: king <king@king.ap.com>

Date:   Thu Jun 30 14:17:27 2011 +0530

This is the second commit

commit 3ba6ce43d500b12f64368b2c27f35211cf189b68

Author: king <king@king.ap.com>

Date:   Thu Jun 30 14:00:01 2011 +0530


This is the first git commit for file1
Run Code Online (Sandbox Code Playgroud)

问题1)现在如何只检查我的第一个版本?问题2)当我这样做时,git只登录File1,为什么它只显示第一次提交?

 [git_trial]$ git checkout 3ba6ce43d500b12f64368b2c27f35211cf189b68
 Note: moving to "3ba6ce43d500b12f64368b2c27f35211cf189b68" which isn't a local branch
 If you want to create a new branch from this checkout, you may do so
 (now or later) by using -b with the checkout command again. Example:

  git checkout -b <new_branch_name>


  [git_trial]$ git log File1

  commit 3ba6ce43d500b12f64368b2c27f35211cf189b68

  Author: king <king@king.ap.com>
  Date:   Thu Jun 30 14:00:01 2011 +0530

  This is the first git commit for file1
Run Code Online (Sandbox Code Playgroud)

Dog*_*ert 40

您可以签出git checkout sha-of-commit已有的提交.

但是你不能提交任何东西(因为你不在分支中,你在静态提交中).

如果您需要在该提交之上提交任何内容,则需要使用将其签出到分支中git checkout sha-of-commit -b testing-a-commit.

git log <file> 仅显示影响该文件的提交.

  • 如果您只是想阅读源代码,可以使用`git checkout &lt;sha&gt;`。 (2认同)