XCode 项目 - 每个开发人员唯一服务器地址的宏
当我开发一个与笔记本电脑上运行的 Rails 应用程序交互的 iPhone 应用程序时,我会做类似的事情,
model.serverIp = @"192.168.0.23";
我将提交此内容,下一个人检查它,并将其更改为他的 IP 地址,然后提交,然后我必须改变它......
避免踩到彼此脚趾的最好方法是什么?
As I develop an iPhone app that speaks to a Rails app running on my laptop, I'll do something like,
model.serverIp = @"192.168.0.23";
I'll commit this, and the next guy checks it out, and changes it to his IP address, and then commits, and then I have to change it........
What's the best way to avoid stepping on each other's toes here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
出于开发目的,执行以下操作之一可能就足够了:
For development purposes it may suffice to one of several things: