如何 将此repo添加为远程并选择增量补丁。 https://github.com/adridu59/semc-7x30-kernel-ics/commits/master-V2?page=6
我只需要从这个repo(不是来自其他网站)的android更新内核
cd '/home/teru/android/system/kernel/semc/msm7x30'
git remote add zzz https://github.com/adridu59/semc-7x30-kernel-ics/commits/master-V2?page=6
git cherry-pick -n <commit>
(我知道输入什么) 但有错误
fatal: bad revision <commit>
答案 0 :(得分:2)
看起来有两个问题。首先,repo的URL不正确 - 这只是Github上某个地方的URL。其次,您需要在添加后从远程提取所有提交。
所以你最终会得到这样的东西:
cd /home/teru/android/system/kernel/semc/msm7x30
git remote add zzz git://github.com/adridu59/semc-7x30-kernel-ics.git
git fetch zzz
git cherry-pick -n <commit>