hg 代码管理 添加.hgignore忽略文件

代码移动到 HG 管理后 .gitignore文件不能用了
然后创建.hgignore文件 忽略不了下边的这个
每次都是冲突
UAV_iOS/UAV_iOS.xcodeproj/project.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate

解决办法

  • 终端在项目目录下 运行hg forget "set:hgignore()"
.hgignore 文件设置

syntax: regexp
.classpath
.settings/*
.DS_Store
.orig
UAV_iOS/UAV_iOS.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate
UserInterfaceState.xcuserstate
xcuserdata
xcuserdata/

你可能感兴趣的:(hg 代码管理 添加.hgignore忽略文件)