不能推,拉或合并git。 “工作副本有未提交的更改”

时间:2012-08-10 22:50:38

标签: ios xcode git repository bitbucket

我最近在bitbucket上设置了一个git存储库,并在其上添加了一个旧项目。我承诺并推动改变作为测试,但现在我面临这个问题。

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

The working copy "" has uncommitted changes.

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

我已经多次做出这种改变:

The file seems to be named: User Interface State


编辑:我做了'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

非常感谢帮助

5 个答案:

答案 0 :(得分: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"

答案 1 :(得分:4)

好的,事实证明我只需发表评论

//THIS IS A TEST

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

谢谢你的帮助,SirKaydian

答案 2 :(得分:1)

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

答案 3 :(得分:0)

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

doInBackground()

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

答案 4 :(得分:-1)

git rm --cached *.xcuserstate *.xcuserdata

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

见这里:Xcode says "Uncommitted Changes" Whenever I try to git pull or push

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

git rm --cached *.xcuserstate
git rm --cached *.xcuserdata