Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我认为这是最简单的问题,但我是第一个 git 。所以你能请任何人帮助我吗?这就是如何从 git 存储库中获取旧代码以及如何从本地(我的机器上的 git repo)存储库中获取旧代码
使用 git,您始终拥有完整存储库的副本,包括历史记录。
首先,克隆您的存储库:
git clone <repo_url>
然后签出旧的提交
git checkout <commit>