如何从 github 历史记录中获取提交的克隆
我想克隆,即将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在您的工作副本目录中运行:
git checkout
Run in the your working copy directory:
git checkout <COMMIT_HASH>
您只需在克隆后使用存档:
如果您想实际在存储库上工作,请签出提交:
请小心,因为现在您不在任何分支上。您需要一个分支来推送、拉取并跟踪您的提交。所以先创建一个分支,然后检查它:
或者在一行中:
you just use the archive after you clone:
if you want to actually work on the repository, checkout the commit:
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:
or in one line: