Untracked Files Prevent Checkout
Move or commit them before checkout
View Files…
使用AndroidStudio切换分支的时候会报此错误,是由于有些文件没有commit是跟你要切换的分支文件有冲突,所以提示去move或者commit这些文件;
解决方法:
到项目工程目录
输入 git checkout -f 你的分支名称
然后就会发现androidstudio已经切换了分支
Untracked Files Prevent Checkout
Move or commit them before checkout
View Files…
使用AndroidStudio切换分支的时候会报此错误,是由于有些文件没有commit是跟你要切换的分支文件有冲突,所以提示去move或者commit这些文件;
解决方法:
到项目工程目录
输入 git checkout -f 你的分支名称
然后就会发现androidstudio已经切换了分支