repo sync同步时提示出错:
error: .repo/manifests/: contains uncommitted changes
解决方法:
1、cd 进入.repo/manifests
cd .repo/manifests
2、执行如下三条命令
git stash
git clean -f -d
3、重新开始同步
repo sync -c -j4 --no-clone-bundle
2023-12-20 10:59:57
repo sync同步时提示出错:
error: .repo/manifests/: contains uncommitted changes
解决方法:
1、cd 进入.repo/manifests
cd .repo/manifests
2、执行如下三条命令
git stash
git clean -f -d
3、重新开始同步
repo sync -c -j4 --no-clone-bundle