我在启动时传递了一个参数:-D DEBUG
它允许我在发布应用程序中使用以下内容:
#ifndef DEBUG
/* Some code I only want to be run when using the release app */
#endif
当我运行时git status
,它告诉我添加时更改的文件-D DEBUG
是MyExampleProject.xcodeproj/xcuserdata/myusername.xcuserdatad/xcschemes/MyExampleProject.xcscheme
应该使用常用的 Xcode .gitignore 文件将其排除。有没有其他方法可以包含这个符合.gitignore
且不依赖于我的用户帐户的参数xcuserdata
?