>>54
https://github.com/ResurrectionRemix/platform_manifest/blob/174f75f2b732116d12c99f0797111b084450bdb7/default.xml#L254

https://android.googlesource.com/platform/external/linux-kselftest/+/refs/tags/android-10.0.0_r41
は存在するということは、隠しディレクトリ .repo内がおかしいのね。

下記内容が修正方法。
repo syncしている場所がCurrentDir

$ CurrentDir=$(pwd)
$ export x=external/linux-kselftest
$ export TragetDirName=$(basename "$x")

$ rm -rfv "$CurrentDir/""$x"
$ find ./.repo/projects ./.repo/project-objects -name "*""$TragetDirName"".git" -type d | xargs rm -rfv
$ repo sync -j8 -cv --no-clone-bundle --no-tags "$x"