How can I move files & folders using git in Xcode 4?

孤人 提交于 2019-12-04 04:47:32

You shall not move files in a GIT repository using the Finder. You'd better use the move command from shell.

You then have to manually redresh links in XCode (or remove/add files again).

Moving a file is similar to the unix 'mv' command, with the 'git prefix:

git mv path destination

(use -f to override destination... with caution)

After you have made all your changes in the Finder, open a terminal window and navigate to your project's directory:

cd path/to/project

then run this command:

git add --all

This command will stage all of the changes and Xcode should be able to resume its management of the repository from here.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!