如何从 github 历史记录中获取提交的克隆

发布于 2024-12-11 02:40:59 字数 89 浏览 0 评论 0原文

我想克隆,即将 1 周前推送到我的计算机上的所有文件获取,我知道 SHA,我只需要一种方法将这些文件获取到本地计算机上的目录中。有没有一种简单的方法可以做到这一点?

I want to clone, that is get all the files from a push 1 week ago onto my computer, I know the SHA, I just need a way to get those files onto a directory on my local machine. Is there a simple way to do this?

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

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

发布评论

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

评论(2

晨光如昨 2024-12-18 02:41:00

在您的工作副本目录中运行:git checkout

Run in the your working copy directory: git checkout <COMMIT_HASH>

三生殊途 2024-12-18 02:40:59

您只需在克隆后使用存档:

git archive <sha1 you want> | tar -x -C /some/path/to/save/to

如果您想实际在存储库上工作,请签出提交:

git checkout <sha1 you want>

请小心,因为现在您不在任何分支上。您需要一个分支来推送、拉取并跟踪您的提交。所以先创建一个分支,然后检查它:

git branch mywork <the sha1 you want>
git checkout mywork

或者在一行中:

git checkout -b mybranch <sha1 you want>

you just use the archive after you clone:

git archive <sha1 you want> | tar -x -C /some/path/to/save/to

if you want to actually work on the repository, checkout the commit:

git checkout <sha1 you want>

Just be careful as now you are not on any branch. You need a branch to push and pull and track your commits. So make a branch first and then check it out:

git branch mywork <the sha1 you want>
git checkout mywork

or in one line:

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