用AI赚第一桶💰低成本搭建一套AI赚钱工具,源码可二开。 广告
# 找回文件、目录 找回文件必须有`commit_id` **获取commit id方式** ``` $ git log ``` 按`q`关闭查看,commit id 不一定要全部复制, 仅前面6位即可 ## checkout 比如我需要找回`app/index/`目录和`woc.php`,假如`commit_id = wdnmd` ```shell $ git checkout [commit_id] 路径 $ git checkout wdnmd app/index/ $ git checkout wdnmd woc.php ```