I checked some source code into GIT with the commit message "Build 0051".
(我使用提交消息“Build 0051”检查了一些源代码到GIT中。)
However, I can't seem to find that source code any more - how do I extract this source from the GIT repository, using the command line?
(但是,我似乎无法再找到源代码 - 如何使用命令行从GIT存储库中提取此源代码?)
Update
(更新)
- Checked in versions 0043, 0044, 0045 and 0046 using SmartGIT.
(使用SmartGIT检查版本0043,0044,0045和0046。)
- Checked out 0043, and checked in versions up to 0051 on a different branch.
(检出0043,并检查其他分支上的版本0051。)
- Checked out 0043 again.
(再次检查0043。)
- Now, 0051 has disappeared.
(现在,0051已经消失了。)
Update
(更新)
The source code is definitely there, now its a matter of checking it out:
(源代码肯定存在,现在需要检查它:)
C:Source>git log -g --grep="0052"
commit 77b1f718d19e5cf46e2fab8405a9a0859c9c2889
Reflog: HEAD@{10} (unknown <Mike@.(none)>)
Reflog message: commit: 20110819 - 1724 - GL: Intermediate version. File version: v0.5.0 build 0052.
Author: unknown <Mike@.(none)>
Date: Fri Aug 19 17:24:51 2011 +0100
20110819 - 1724 - GL: Intermediate version. File version: v0.5.0 build 0052.
C:Source>
ask by Contango translate from so