Cannot clone CyanogenMod's Optimus Black repositories
Added by Linus Drumbler over 11 years ago
After git clone https://github.com/CyanogenMod/android_device_lge_p970.git
, I get this message: "warning: remote HEAD refers to nonexistent ref, unable to checkout." The resulting cloned repository contains no actual source code. I could download the zip files, but I feel like I might need the commit history...
Replies (3)
RE: Cannot clone CyanogenMod's Optimus Black repositories - Added by Paul Kocialkowski over 11 years ago
Ok I guess you need to learn it more details how git works (http://git-scm.com/docs/).
That message most likely appears because there is no master
branch to checkout. While cloning, you could have specified a specific branch -b cm-10.1
. Now you have to checkout that branch to have the source code appear. Start by looking at the existing refs: git show-ref
and checkout the cm-10.1 ref: git checkout refs/remotes/origin/cm-10.1
.
RE: Cannot clone CyanogenMod's Optimus Black repositories - Added by Jonas OEstman almost 10 years ago
Found a cm-11.0 repo at https://github.com/rac00n/android_device_lge_p970 with latest commit Oct 29, 2014.
Im a little bit worried that the wiki article about this phone is removed. Would be good to have a place to check what need more work done.
RE: Cannot clone CyanogenMod's Optimus Black repositories - Added by Paul Kocialkowski almost 10 years ago
Im a little bit worried that the wiki article about this phone is removed. Would be good to have a place to check what need more work done.
We will provide full installation instructions when the device is supported by Replicant, so that we don't need to rely on the CyanogenMod wiki.