Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不知道该怎么做,我总是用 XCode 做一个 git commit,它可以工作,但文件的状态是“A”(新文件)。
如果我从外部程序进行提交,它可以工作,但不会更改 XCode 中的“A”状态。
我能做些什么?
这可能是由于任何 svn 工作副本提交问题。试试这个,打开终端并导航到您的项目位置,然后输入
iMac-03:~ administrator$ svn status
它将显示当前工作副本的状态。
(注意:确保工作副本的位置正确植根)。然后执行这个
iMac-03:~ administrator$ svn add ./* // This command will connect the non committed files properly with working copy.