subversion 同步存储库的一部分
我们有一个内部托管的存储库,我们希望同步在线存储库上的一些项目。通过查看 svnsync 命令,似乎同步是针对所有存储库的。有没有办法限制同步到某些目录?
We have a repository hosted in-house and we want to synchronize some of the projects on an online repository. By looking at svnsync
command, it seems that the synchronization is for all the repository. Is there a way to restrict the synchronization to some directories?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的目标是使用 Google Code 向公众提供我的代码。幸运的是,他们提供了一个
Mercurial
存储库。所以我最终混合了 SVN 和 Mercurial。Google Code
项目克隆到文件夹project-hg
project-hg
>Mercurial
添加并提交文件并忽略.svn
文件夹Google Code
每次我想要将我的项目与
同步时, code>Google Code
我执行svn update
Mercurial
提交修改Google Code
我将丢失修订历史记录来自 SVN 但这对我来说不是问题。
My goal was to make my code available to the public using Google Code. Fortunately they provide a
Mercurial
repository. So I ended up mixing bothSVN
andMercurial
.Google Code
on the local machine into folderproject-hg
project-hg
Mercurial
and ignore.svn
foldersGoogle Code
Every time I want to synchronize my project with
Google Code
I dosvn update
Mercurial
Google Code
I will lose the revision history from SVN but it’s not a problem for me.