xcode – 由于未跟踪的工作树文件导致的git branch checkout问题

前端之家收集整理的这篇文章主要介绍了xcode – 由于未跟踪的工作树文件导致的git branch checkout问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我以为我把 Xcode git问题的日子抛在身后.可能不会.我试图检查另一个分支时收到这个git错误.
error: The following untracked working tree files would be overwritten by checkout:
    RCAlpha.xcodeproj/project.xcworkspace/xcuserdata/andrewjl.xcuserdatad/UserInterfaceState.xcuserstate
    RCAlpha.xcodeproj/xcuserdata/andrewjl.xcuserdatad/xcschemes/RCAlpha.xcscheme
    RCAlpha.xcodeproj/xcuserdata/andrewjl.xcuserdatad/xcschemes/xcschememanagement.plist
Please move or remove them before you can switch branches.
Aborting

很好,我说,让我删除这些文件

andrewjl$git rm --cached RCAlpha.xcodeproj/project.xcworkspace/xcuserdata/andrewjl.xcuserdatad/UserInterfaceState.xcuserstate
fatal: pathspec 'RCAlpha.xcodeproj/project.xcworkspace/xcuserdata/andrewjl.xcuserdatad/UserInterfaceState.xcuserstate' did not match any files

在这一点上,我不知道该怎么做.这些文件都列在我的.gitignore中,我也尝试了git clean -f -d.没有骰子.有谁知道这里发生了什么?

解决方法

文件未跟踪:git rm –cached无法找到它们,因为索引中没有.只需使用文件管理器或rm删除它们即可.然后结帐应该按预期工作.请注意,git status将显示git将文件视为(跟踪,更改,未跟踪;使用其他选项,它还将显示被忽略的文件).
原文链接:/iOS/334545.html

猜你在找的iOS相关文章