在不使用版本控制的情况下跨计算机同步代码、项目文件
你好 由于我总是在家庭和办公室之间传输文件(主要是用于编码的纯文本),我想知道其他编码人员是否会分享他们的首选方法。版本控制、签入和签出真的是同步远程数据的最佳方式吗?还是有其他解决方案(即基于第三方云的工具,如投递箱或...)
希望了解其他人对此主题的意见。 ..
Hi
Since I'm always transferring files, primarily plain text for coding, between home and office, I was wonder if other coders would share their preferred method for doing this. Is version control, checking in and out, really the best way to sync remote data, or is there some other solution (ie 3rd party cloud based tools like drop box or...)
Would luv to get other people's opinions on this subject...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当在多台机器上共享文件和源代码时,如果不使用某些版本控制,总是有可能丢失某些内容。我个人使用git(一个分布式版本控制系统,实际上,只是愚蠢的内容跟踪器)适用于所有内容,特别是对于在许多机器上实时的内容。
轻量级和分布式版本控制系统的好处是:
因此,我强烈反对手动管理同步 - 即使在项目的一人表演中。
When sharing files and source across more than one machine there is always the possibility to loose something when not using some version control. I personally use git (a distributed version control system, actually, just the stupid content tracker) for everything, especially for stuff that is live on many machines.
The benefits of a light and distributed version control system are:
So, I am strongly against manually managing synchronization - even in a one-man-show of a project.