Discard all changes 导致工程文件消失

当使用CocoaPods导入第三方框架进行iOS应用开发的时候,不要选择下图中的 Discard All Changes..


因为直接Commit到git时,导入的第三方框架不会被记录,尤其是在使用CocoaPods的时候,选择该选项会导致通过pod install生成的xcworkspace文件直接消失。



更恰当的方式是通过终端以命令行的方式回滚代码。


本地代码库回滚:

git reset --hard commit-id :将代码回滚到commit-id时的状态

git reset --hard HEAD~3:回滚到三次提交之前的状态


从History中可查看Commit状态

工程文件消失的解决方法:

使用原来的podfile文件再次pod install

打开新的xcworkspace文件,删除掉原先的bringing header文件重新建立,再检查补充图片等素材文件即可解决。


补充

远程代码库回滚:

1、git checkout the_branch

2、git pull

3、git branch the_branch_backup

4、git reset --hard the_commit_id

5、git push origin :the_branch 

6、git push origin the_branch

7、git push origin :the_branch_backup 


你可能感兴趣的:(ios,git,swift,commit)