博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
XCode 开发去除 UserInterfaceState.xcuserstate 文件为版本控制带来的困扰
阅读量:4110 次
发布时间:2019-05-25

本文共 1795 字,大约阅读时间需要 5 分钟。

原理和操作步骤见如下转载的两篇文章,

我所使用的 svn 客户端软件是 Mac 下面的 Versions.app v1.06

这个版本包含一个多人开发的bug

bug 的解决方案见我之前转载的两篇文章~

另外就是如本文转载的第一篇文章,我也深受 UserInterfaceState.xcuserstate 文件频繁更新带来的困扰,

要免除该困扰,可在 Versions 的配置文件 ~/.subversion/config 中忽略对 xcuserstate 类型文件的。

另外,Versions 的配置文件是处于隐藏目录的,可在 Finder 中通过 cmd + shift + g 直接跳到隐藏目录~

************************ 分割线 ***************************

文章标题:

摆脱 UserInterfaceState.xcuserstate给Xcode 版本控制()带来的困扰

转载自:

今天在Xcode中Commit的时候UserInterfaceState.xcuserstate这个文件几秒钟更新一次, 搅得人不得安宁, 用.gitignore无效. 于是, 在终端中输入:

$ git rm --cached iLedger.xcodeproj/project.xcworkspace/xcuserdata/Alex.xcuserdatad/UserInterfaceState.xcuserstate$ git commit -m "Removed the stupid strange file that shouldn't be tracked"$ git push
搞定!

************************ 分割线 ***************************

文章标题:

XCode SVN

转载自:

  1. Create the project in XCODE.
  2. Setup subversion in XCODE and select the subversion repository for this project.
  3. Use Xcode SCM > Repository and click on the IMPORT icon. This will move the local copy to the subversion repository.
  4. Now delete your local copy (or move it to another location just in case).
  5. Finally CHECKOUT the project from subversion (this will create the subversion .svn folders, …).
  6. Reselect the subversion repository for this project.
  7. Commit the entire project.

第一步,配置Subversion

Xcode中SVN使用时需要配置Subversion。Leopard中自带了SVN,但Xcode的项目文件中,并不是所有文件都适于加入SVN中进 行管理,比如编译后的文件和编译过程中产生的文件,这些文件不属于源代码,应该告诉svn忽略掉,方法:编辑~/.subversion/config文 件
1.找到global-ignores一行,去掉注释,编辑成
global-ignores=build*~.nib*.so*.pbxuser*.mode*.perspective*
Xcode项目文件中有些文件是文本文件,需要告诉SVN,因为SVN能更好地管理文本文件(谁用谁知道)
2.找到enable-auto-props=yes把注释去掉,在[auto-props]Section声明以下文本文件
*.mode*=svn:mime-type=text/X-xcode
*.pbxuser=svn:mime-type=text/X-xcode
*.perspective*=svn:mime-type=text/X-xcode
*.pbxproj=svn:mime-type=text/X-xcode

你可能感兴趣的文章
ios实用wifi分析仪——AirPort
查看>>
【软工项目组】第十三次会议(样式设计2.0)
查看>>
【django基础】
查看>>
SQL Server:关于Null的一些事
查看>>
StringBuilder与StringBuffer
查看>>
【征文】Hadoop十周年特别策划——我与Hadoop不得不说的故事
查看>>
CPU组成
查看>>
Android 自己定义RecyclerView 实现真正的Gallery效果
查看>>
设计模式——状态模式(State)
查看>>
php 实现SFTP上传文件
查看>>
【转载】max/min函数的用法
查看>>
Apache 服务器下载与搭建
查看>>
查看SqlServer表 索引 创建时间,修改时间。或者修改记录(转)
查看>>
git学习笔记
查看>>
CodeForces985F -- Isomorphic Strings
查看>>
CF579 - A Raisinng bacteria
查看>>
一次失败的尝试:arm(aarch64架构)上使用docker运行Gogs
查看>>
React Native 简介:用 JavaScript 搭建 iOS 应用(2)
查看>>
58同城技术委员会执行主席沈剑:好的架构是进化来的,不是设计来的
查看>>
python argparse模块的使用
查看>>