我在我的一个项目上设置本地 git 存储库时遇到了很多麻烦。我创建了一个全新的项目并将所有文件拖入其中,确保我检查了 git/version control 勾选。
现在我在管理器中看到了存储库(文件系统指向正确的位置),并且可以使用管理器中的按钮Pull
和Commit
所有内容:
但是,当我在实际项目中进行任何更改时,即使进行了更改,也不会显示源代码控制徽章,即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")