1

我在我的一个项目上设置本地 git 存储库时遇到了很多麻烦。我创建了一个全新的项目并将所有文件拖入其中,确保我检查了 git/version control 勾选。

现在我在管理器中看到了存储库(文件系统指向正确的位置),并且可以使用管理器中的按钮PullCommit所有内容:

在此处输入图像描述

但是,当我在实际项目中进行任何更改时,即使进行了更改,也不会显示源代码控制徽章,即M,A等。当我尝试推动(或做任何事情)时,它说没有遥控器(有遥控器......):

在此处输入图像描述

似乎该项目实际上并未附加到存储库...

编辑: git status在终端

# On branch master
# Your branch is ahead of 'origin/master' by 1 commit.
#   (use "git push" to publish your local 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:   CrunchCalculator-1-2.xcodeproj/project.xcworkspace/xcuserdata/Neil.xcuserdatad/UserInterfaceState.xcuserstate
#   modified:   CrunchCalculator-1-2/ViewController.h
#
no changes added to commit (use "git add" and/or "git commit -a")
4

2 回答 2

1

经过数小时的重新启动、测试和搜索解决方案......原来您所要做的就是更改项目的名称。通过单击主项目文件夹(蓝色)并按回车键,然后将名称更改为其他名称,这解决了问题。

更改项目名称!

于 2013-03-19T01:30:58.703 回答
0

而不是使用 XCode for GIT 使用命令行。

此链接为您提供各种 GIT 命令git的用法

于 2013-03-18T11:56:42.587 回答