使用Xcode的源代码管理时,出现以下错误 按 commit#Files and Push 。
工作副本“项目”未能提交文件。
致命:无法在合并期间进行部分提交。
我正在使用Xcode 9+。我看过here,但没有找到任何能解决Xcode源代码管理问题的东西。
感谢您的帮助。
答案 0 :(得分:1)
您将不得不使用
terminal
来解决此问题。Xcode
(从Xcode 9开始)不支持git中的许多功能,例如{{1} }。
选项1-使用git stash
在this SO answer之后,尝试进行所有本地更改并使用Xcode重复您的步骤
Xcode
terminal
cd /path/to/project
选项2-使用git add .
如果terminal
无法解决问题,您可以使用Option 1
本身完成此任务
terminal
terminal
cd /path/to/project
git stash save name-this-stash
git reset --hard HEAD~30
git pull origin branch-name
git stash apply
git status
git add file1 file2
git commit -m "commit-message"
希望有帮助!