其他分享
首页 > 其他分享> > error: .repo/manifests/: contains uncommitted changes

error: .repo/manifests/: contains uncommitted changes

作者:互联网

今天在同步Android Source时出

     error: .repo/manifests/: contains uncommitted changes

 google查找一阵子,无果,虽然也有人遇到但却没有给出解决方法。最后试了一下以下方法,得以解决。

解决方法:

第一种方法:

  1. 删除Andriod/source/.repo/目录下除了projects目录以外的所有目录。
  2. 重新执行命令
1 repo init -u git://android.git.kernel.org/platform/manifest.git
2 repo sync

        此时因为projects目录文件没有删除,所以重新同步不会重新下载所有文件,所以不会花费很长时间。

第二种方法: 

   发现.repo/manifests下面有个.git文件夹。git commit -a就ok了

第三种方法:

先把.repo目录删干净再init。
rm  -r .repo


参考:https://www.cnblogs.com/googlegis/archive/2012/01/01/2978747.html

标签:git,contains,manifests,repo,uncommitted,方法,目录
来源: https://www.cnblogs.com/ChenChangXiong/p/15041079.html