svn 存储文档以进行变更管理
将项目相关文档保存在 svn 中是个好主意吗?有没有可以推荐的文档管理应用程序(sharepoint?)?问题是针对中等规模的软件公司(20 名开发人员)。
Is it a good idea to keep project related documents in svn ? is there any document management app (sharepoint?) you can recommend for this ? The question is for a medium size software house (20 devs).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,将文档存储在修订控制系统中确实是一个好主意,以便您可以跟踪文档并保留修订。
Yes, it is indeed a good idea to store your documents in a revision control system so that you can track the documents and keep revisions.
您可能不需要文档管理应用程序。用户可以直接访问 http://svnserver/repository/trunk/project_a/doc1.doc 或者你有什么。 Windows 文件打开对话框也可以浏览存储库。
我使用 Subversion,但为了共享一些文档并能够同时编辑同一文档,我更喜欢 google 文档。
You might not need a document management app. Users can go directly to http://svnserver/repository/trunk/project_a/doc1.doc or what have you. The windows file open dialog can browse the repository as well.
I use Subversion but for sharing some documents and being able to edit the same document simultaneously I prefer google docs.
我们添加了关于 SVN 中 word 文档版本控制的审核问题,很难将发送到客户端的特定版本追溯到存储库中的正确版本,这意味着没有一种简单的方法可以使用 SVN 给出的版本来包含在文档本身的封面中,因为在提交之前不可能知道 SVN 中的文件版本。我们必须使用标签,使用起来很麻烦。
We add an audit issue regarding versioning of word documents in SVN, where it is dificult to trace a specific version sent to the client to the correct version in the repository, meaning that there is not an easy way to use the version given by SVN to include in the cover sheet of the document itself, because the version of the file in SVN is impossible to know before commit. We have to use tags which is cumbursome to use.