我正在使用AOSP
通过repo
命令下载的源(http://source.android.com/source/using-repo.html)
现在我需要像 1 个月前一样获取所有存储库。
我在这里找到了解决方案(http://alexpeattie.com/blog/working-with-dates-in-git/):
git revert master@{"1 month ago"}
但我不能在 AOSP 源代码树中做到这一点。
我试图这样做:
repo forall -c git revert master@{"1 month ago"}
但它不起作用,因为AOSPmaster
中的所有存储库都没有分支。git
repo
有什么解决办法吗?