9

我最近在 bitbucket 上建立了一个 git 存储库,并在其中添加了一个旧项目。我已经提交并推动了一项更改作为测试,但现在我面临这个问题。

每次我尝试拉、推或合并时,都会收到以下错误消息:

工作副本

“工作副本 'Project_Name' 有未提交的更改”。

我已经多次提交了这个更改:

该文件似乎被命名为:用户界面状态


编辑:我做了'git status'并得到以下信息:

# On branch master
# Your branch is ahead of 'origin/master' by 2 commits.
#
# Changes not staged for commit:
#   (use "git add <file>..." to update what will be committed)
#   (use "git checkout -- <file>..." to discard changes in working directory)
#
#   modified:   Crunch.xcodeproj/project.xcworkspace/xcuserdata/Neil.xcuserdatad/UserInterfaceState.xcuserstate
#
no changes added to commit (use "git add" and/or "git commit -a")

非常感谢您的帮助,SirKaydian

4

5 回答 5

15

第1步:

git rm --cached ProjectName.xcodeproj/project.xcworkspace/xcuserdata/username.xcuserdatad/UserInterfaceState.xcuserstate

第2步:

git commit -m "Removed file that shouldn't be tracked"
于 2013-02-27T08:39:12.723 回答
4

好吧,原来我只需要发表评论

//THIS IS A TEST

并承诺。现在它工作正常。这一定只是一些奇怪的错误。

感谢您的帮助,SirKaydian

于 2012-08-10T23:56:34.143 回答
1

我不熟悉该.xcuserstate文件,但它听起来像是一个用户特定的文件。通常,用户特定的文件在源代码控制中没有任何业务。它们经常更改,通常是二进制的,因此难以区分,并且对其他用户没有帮助。尝试关闭您的 IDE,然后运行命令或尝试将此文件名添加到您的.gitignore文件中。

于 2012-08-10T23:52:01.577 回答
0

我通过以下方式解决了这个问题:

git push <remote> localbranch --force.

除非您完全确定自己知道自己在做什么,否则不要使用 --force 标志。

于 2015-05-13T02:30:45.617 回答
-1
git rm --cached *.xcuserstate *.xcuserdata

运行上面的命令。然后提交,然后推送。

见这里:Xcode 说“未提交的更改”每当我尝试 git pull 或 push

您可能需要单独运行它们:

git rm --cached *.xcuserstate
git rm --cached *.xcuserdata
于 2014-04-17T19:19:48.293 回答