通过 git 使用旧版本的文件

发布于 2024-12-10 17:35:06 字数 89 浏览 1 评论 0原文

到目前为止,我已经使用 git 进行了一些基本操作,在这个实际的工作场景中,我需要访问指定文件的旧版本。我的问题是如何在新分支中转换以前的提交版本。是否可以?如何?

Until now I've did some basic operations with git, and in this real working scenario, I need to have access to an older version of a specified file. My question is how to transform a previous commit version in a new branch. Is it possible? How?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

忘年祭陌 2024-12-17 17:35:06

如果您想在任意提交处创建一个新分支并检查它,请执行以下操作:

git checkout -b name_of_your_new_branch <sha1 of the commit>

If you want to create a new branch at a arbitrary commit and check it out, do:

git checkout -b name_of_your_new_branch <sha1 of the commit>
潦草背影 2024-12-17 17:35:06

如果您只想使用旧版本的文件,您可以执行以下操作:

git checkout <commit> -- file

If you just wan the older version of a file, you can do:

git checkout <commit> -- file
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文