12 Feb
2020
12 Feb
'20
1:26 a.m.
It looks like they pushed repo version 2 into their stable branch last night. You'll likely pick it up with your next 'repo init' or 'repo sync'. It demands git 2.10.2 or better, which isn't available on Centos 7. My initial workaround is ... for folks that are hit by this ... is to revert to repo version 1. I don't yet see a way to force repo 1 to be used from command line, so we must let the first call fail .... repo init .... # command fails cd .repo/repo git checkout repo-1 cd - repo init .... # command passes Hopefully we can work out a better solution... Scott